forked from team-cbam/eat-up-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·88 lines (76 loc) · 2.96 KB
/
index.html
File metadata and controls
executable file
·88 lines (76 loc) · 2.96 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Eat Up</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Do not add `link` tags-->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<!-- Do not add `script` tags-->
<script src="public/vendor.js" type="text/javascript" charset="utf-8" defer></script>
<script src="public/application.js" type="text/javascript" charset="utf-8" defer></script>
</head>
<body>
<div class="wrapper row">
<!-- Content body -->
<section class="container all-events col-8 p-0">
<div class="row flex-column header align-content-center m-4">
<h1>Eat Up!</h1>
</div>
<div class="row flex-column header align-content-center">
<p class="status-message"></p>
</div>
<div class="content">
<div class="groups">
</div></div>
</section>
<!-- auth sidebar -->
<section class="container auth col-4 p-2">
<div class="row flex-column align-items-center">
<!-- Welcome message -->
<div>
<h1>Welcome!</h1>
</div>
<div class="row">
<div class="auth-message"></div>
</div>
<div class="row flex-column sidebar p-4">
<!-- Sign in screen -->
<div class="sign-in-screen signed-out justify-content-center flex-column">
<h4 class="p-2">Sign In</h4>
<form id="sign-in" class="p-2">
<input class="form-control" type="email" placeholder="Email" name="credentials[email]">
<input class="form-control" type="password" placeholder="Password" name="credentials[password]">
<button class="btn btn-primary" type="submit">Submit</button>
</form>
<a class='sign-up-link' href="#">New to Eat up? Create an account here.</a>
</div>
</div>
</div>
</section>
</div>
<!-- Change password modal -->
<div class="modal fade" id="change-password-modal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Change Password</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<form class="dropdown-item" id="change-password">
<div class="modal-body">
<p class='password-message'></p>
<input class="form-control" type="password" placeholder="Old Password" name="passwords[old]">
<input class="form-control" type="password" placeholder="New Password" name="passwords[new]">
</div>
<div class="modal-footer">
<button class="btn btn-primary" type="submit">Submit</button>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>