-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (102 loc) · 3.89 KB
/
index.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
<!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" />
</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">Product Backlog</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="backlog-list">
<div class="mdl-grid">
<div class="mdl-layout-spacer"></div>
<div class="mdl-cell mdl-cell--2-col">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<select class="mdl-textfield__input" id="filterlist" name="list2">
<option value="" selected>No Filter</option>
<option value="CORE">Core</option>
<option value="TESTING">Testing</option>
<option value="UI">UI</option>
</select>
</div>
</div>
<div class="mdl-cell mdl-cell--2-col">
<a href="addTask.html">
<button type="button" class="mdl-button mdl-js-button mdl-button--raised">
Add Task
</button>
</a>
</div>
</div>
<h3 id="centre">Product Backlog Items</h3>
<div class="mdl-grid" id="backlogList"></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/backlog.js"></script>
</body>
</html>