-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsprintboard.HTML
123 lines (116 loc) · 4.42 KB
/
sprintboard.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!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/sprintboard.css" />
</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">Home</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>
<main class="mdl-layout__content">
<div class="mdl-grid">
<div class="mdl-layout-spacer"></div>
<div class="mdl-cell mdl-cell--3-col">
<div id="container">
<a href="#">
<button
class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect " onclick=burndownLink()>
Burndown chart
</button>
</a>
<button
class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect " id="completeSprint"
type="button" onclick="completeSprint()">
Complete Sprint
</button>
</div>
</div>
</div>
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--12-col">
<h1 id="sprintName">Sprint name</h1>
<h5 id="sprintDate">dd/mm/yyyy - dd/mm/yyyy</h5>
</div>
<div class="mdl-cell mdl-cell--4-col sections" id="Not Started" data-status="Not Started" data-index="-1">
<h1>Not Started</h1>
<div id="not_started_content"></div>
</div>
<div class="mdl-cell mdl-cell--4-col sections" id="In Progress" data-status="In Progress" data-index="-1">
<h1>In Progress</h1>
<div id="in_progress_content"></div>
</div>
<div class="mdl-cell mdl-cell--4-col sections" id="Completed" data-status="Completed" data-index="-1">
<h1>Completed</h1>
<div id="completed_content"></div>
</div>
</div>
<dialog class="mdl-dialog" id="dialog">
<h4 class="mdl-dialog__title" id="dialog_title">Task Name</h4>
<div class="mdl-dialog__content" id="dialog_content">
<p>
Type:
<br />
Story points:
<br />
Tags:
<br />
Priority:
<br />
Assignee:
<br />
Status:
<br />
Description:
</p>
</div>
<div class="mdl-dialog__actions">
<a href="edit.html">
<button type="button" class="mdl-button">Edit</button>
</a>
<button type="button" class="mdl-button close">OK</button>
</div>
</dialog>
</main>
</div>
<script src="js/config.js"></script>
<script src="js/shared.js"></script>
<script src="js/sprintboard.js"></script>
</body>
</html>