-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (40 loc) · 2.3 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
<!doctype html>
<html>
<head>
<title>My #vtReadingChallenge Progress</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/uxsolutions/bootstrap-datepicker/master/dist/css/bootstrap-datepicker.min.css">
<link rel="stylesheet" type="text/css" href="app.css">
</head>
<body>
<header>
<div id="logo"></div>
<div id="user"></div>
<div id="total"> <strong></strong></div>
<a id="logout" href="#" title="Log out of the app" style="display: none;">Log Out</a>
<!-- <a id="about" href="#" title="About this app">About</a> -->
<!-- <a id="share" href="https://twitter.com/home?status=I'm%20doing%20the%20%23vtReadingChallenge%20by%20%40someonehere%20at%20http%3A//url.com" title="Share on Twitter">Share</a> -->
</header>
<main>
<section id="auth" style="display: none;">
<form id="login" action="">
<p><strong>Login or Register</strong></p>
<input type="text" name="name" placeholder="First Name">
<input type="email" name="email" placeholder="Email Address">
<button type="submit">Submit</button>
</form>
</section>
<section id="list" style="display: none;">
<ul id="display" class="list-unstyled"></ul>
</section>
</main>
<footer></footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
<script src="https://cdn.rawgit.com/uxsolutions/bootstrap-datepicker/master/dist/js/bootstrap-datepicker.min.js"></script>
<script src="list.js"></script>
<script src="app.js"></script>
</body>
</html>