-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (40 loc) · 1.41 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
<!DOCTYPE html>
<html>
<head>
<script src="js/jquery.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script type="text/javascript">
var timerStart = Date.now();
</script>
<!------ Include the above in your HEAD tag ---------->
</head>
<body id="LoginForm">
<div class="container">
<h1 class="form-heading">Login</h1>
<div class="login-form">
<form id="Login" method="POST" action="/submit">
<div class="form-group">
<input type="email" class="form-control" name="email" id="inputEmailHidden" placeholder="Email Address">
</div>
<div class="form-group">
<input type="password" class="form-control" name="password" id="inputPasswordHidden" placeholder="Password">
</div>
<div class="forgot">
<a href="reset">Forgot password?</a>
</div>
<button type="submit" class="btn btn-primary">Login</button>
</form>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function() {
console.log("Time until DOMready: ", Date.now() - timerStart);
});
$(window).on('load', function() {
console.log("Time until everything loaded: ", Date.now() - timerStart);
});
</script>
</body>
</html>