-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (39 loc) · 1.65 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
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="css/styleMain.css">
<!-- <script src='/index.js'></script> -->
</head>
<body>
<div id="registerOverlay">
<div id="exitProfile" onclick="toggleRegister()"></div>
</div>
<!-- Content -->
<div class="container">
<div class="row">
<div class="col s12 m12 l12">
<div class="loginLogo">
</div>
<fieldset style="border: 0;">
<p>
<label for="username" style="font-size: 18px; color:#fff">Username or Email</label>
<input type="text" autocapitalize='none' style="font-size: 14px; color:#fff" name="username" id="username" value=""/>
</p>
<p>
<label for="password" style="font-size: 18px; color:#fff">Password</label>
<input type="password" style="font-size: 14px; color:#fff" name="password" id="password" value=""/>
</p>
</fieldset>
<a href="overview.html"><button class="waves-light btn login-button white-text">Login</button></a>
</div>
</div>
</div>
<div class="loginBox">
<!-- <form action="/login" method="post"> -->
<!-- </form> -->
</div>
<!-- Footer -->
</body>
<script src='js/uiController.js'></script>
</html>