-
Notifications
You must be signed in to change notification settings - Fork 0
/
HACK of snooze html.html
114 lines (83 loc) · 2.79 KB
/
HACK of snooze html.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Hack or Snooze</title>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU"
crossorigin="anonymous">
<link rel="stylesheet" href="css/site.css">
<link rel="stylesheet" href="css/user.css">
<link rel="stylesheet" href="css/stories.css">
<link rel="stylesheet" href="css/nav.css">
</head>
<body>
<!-- top navigation bar -->
<nav>
<div class="navbar-brand">
<a class="nav-link" href="#" id="nav-all">Hack or Snooze</a>
</div>
<div class="nav-right">
<a class="nav-link" href="#" id="nav-login">login/signup</a>
<a class="nav-link" href="#" id="nav-user-profile"></a>
<a class="hidden" id="nav-logout" href="#"><small>(logout)</small></a>
</div>
</nav>
<!-- area for stories (all stories, user stories, favorites) -->
<section class="stories-container container">
<!-- loading message (removed by JS after stories loaded) -->
<div id="stories-loading-msg">Loading…</div>
<!-- List of all stories -->
<ol id="all-stories-list" class="stories-list"></ol>
</section>
<!-- Login and signup forms -->
<section class="account-forms-container container">
<!-- Login form -->
<form action="#" id="login-form" class="account-form hidden" method="post">
<h4>Login</h4>
<div class="login-input">
<label for="login-username">username</label>
<input id="login-username" autocomplete="current-username">
</div>
<div class="login-input">
<label for="login-password">password</label>
<input id="login-password" type="password" autocomplete="current-password">
</div>
<button type="submit">login</button>
<hr>
</form>
<!-- Signup form -->
<form
action="#"
id="signup-form"
class="account-form hidden"
method="post">
<h4>Create Account</h4>
<div class="login-input">
<label for="signup-name">name</label>
<input id="signup-name" autocapitalize="words">
</div>
<div class="login-input">
<label for="signup-username">username</label>
<input id="signup-username" autocomplete="new-username">
</div>
<div class="login-input">
<label for="signup-password">password</label>
<input id="signup-password" autocomplete="new-password" type="password">
</div>
<button type="submit">create account</button>
</form>
</section>
<!-- Library JS & our JS -->
<script src="https://unpkg.com/jquery"></script>
<script src="https://unpkg.com/axios/dist/axios.js"></script>
<script src="js/models.js"></script>
<script src="js/main.js"></script>
<script src="js/nav.js"></script>
<script src="js/user.js"></script>
<script src="js/stories.js"></script>
</body>
</html>