-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddSprint.html
86 lines (81 loc) · 3.82 KB
/
addSprint.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<title>ScrumMASTER</title>
<meta name="description" content="A project management software for agile projects">
<!-- Material Design Lite -->
<script src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
<!-- Material Design icon and Montserrat fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<!-- CSS Links -->
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/addTask.css">
<script src="js/config.js"></script>
</head>
<body>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header" id="black">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title" id="Montserrat"><a href="index.html"><img src="img/ClockGears.jpeg"
id="topleftlogo"></a> ScrumMASTER</span>
<!-- Add spacer, to align page title to the right -->
<div class="mdl-layout-spacer"></div>
<!-- Title -->
<span class="mdl-layout-title" id="Montserrat">Add Sprint</span>
</div>
</header>
<div class="mdl-layout__drawer" id="black">
<div class="demo-layout-transparent mdl-layout mdl-js-layout">
<header class="mdl-layout__header mdl-layout__header--transparent" id="top-left">
<div class="mdl-layout__header-row" id="top-left-header">
<!-- Title -->
<span class="mdl-layout-title" id="header-title">ScrumMASTER</span>
</div>
</header>
</div>
<!-- Navigation -->
<nav class="mdl-navigation" id="drawer-nav">
<a class="mdl-navigation__link" href="index.html">Product Backlog</a>
<a class="mdl-navigation__link" href="listOfSprints.html">List of Sprints</a>
<a class="mdl-navigation__link" href="listOfTeamMembers.html">Team</a>
</nav>
</div>
</div>
<main class="mdl-layout__content">
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--12-col mdl-grid" id="template">
<div class="login-box">
<h2>Add your sprint</h2>
<form>
<div class="user-box">
<input type="text" name="sprintname" id="sprintName">
<label>Sprint Name</label>
</div>
<div class="user-box">
<input type="date" name="startDate" id="startDate">
<label>Start Date</label>
</div>
<div class="user-box">
<input type="date" name="endDate" id="endDate">
<label>End Date</label>
</div>
<a href="#">
<button class="button" input type="button" onclick="window.location.href='index.html';"
value="Click"> Cancel
</button>
<a href="#">
<button class="button" input type="button" id="add" onclick="verifySprintInputs()">
Confirm
</button>
</a>
</form>
</div>
</div>
</div>
</main>
<script src="js/shared.js"></script>
<script src="js/addSprint.js"></script>
</body>
</html>