-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
67 lines (63 loc) · 2.97 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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bugzilla Timeline</title>
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="images/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="images/apple-touch-icon-60x60.png" />
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="images/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="images/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="images/apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="images/favicon-196x196.png" sizes="196x196" />
<link rel="icon" type="image/png" href="images/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="images/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="images/favicon-16x16.png" sizes="16x16" />
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header>
<h1>Bugzilla Timeline</h1>
<p>
<span class="email"></span>
<button type="button" class="edit-email" title="Edit"> </button>
</p>
</header>
<section class="dashboard">
<nav>
<button id="esc" type="button">✕</button>
<button type="button" class="year-nav" data-direction="previous" data-year=""></button>
<h2 class="year"></h2>
<h2 class="bug-title"></h2>
<button type="button" class="year-nav" data-direction="next" data-year=""></button>
</nav>
<svg preserveAspectRatio="xMidYMin" viewBox="0 0 365 100">
<defs>
<pattern id="pattern-stripe"
width="1.5" height="3"
patternUnits="userSpaceOnUse"
patternTransform="rotate(45)">
<rect width="0.5" height="4" transform="translate(0,0)" fill="rgba(0,0,0,0.3)"></rect>
</pattern>
</defs>
</svg>
</section>
<section class="form hidden">
<form>
<label>
<span>Enter your Bugzilla account email</span>
<input type="email" name="email" placeholder="[email protected]" required>
</label>
<button>Show my timeline</button>
</form>
</section>
<footer>
<p>Created by <a href="https://twitter.com/nicolaschevobbe">Nicolas Chevobbe</a>. Heavily inspired by <a href="http://cushionapp.com/">Cushion</a></p>
</footer>
<script src="dist/bundle.js" charset="utf-8"></script>
</body>
</html>