forked from abuckstopshere/hoodHawk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (59 loc) · 3.29 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html lang='en'>
<head>
<title>HoodHawk Login</title>
<!-- Required meta tags -->
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1, shrink-to-fit=no'>
<!-- Bootstrap CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="assets/css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection" />
<link rel='stylesheet' href='assets/css/style.css'>
</head>
<body class="loginPage">
<div id="index-banner" class="parallax-container">
<div class="section no-pad-bot">
<a href="#" class="brand-logo"><img id="loginLogo" src="assets/images/hoodHawk.png" alt="company logo"></a>
<div class="container">
<br><br>
<div class="row center">
<h5 class="slogan header col s12">Please Log In</h5>
</div>
<!-- Form Section -->
<div id="formZone" class="row center">
<form class="col s10 offset-s1">
<div class="formContainer clearfix">
<div class="input-field col s6">
<i class="material-icons prefix">account_circle</i>
<input id="txtEmail" type="text" class="validate">
<label for="icon_prefix">Username</label>
</div>
<div class="input-field col s6">
<i class="material-icons prefix">lock_outline</i>
<input id="txtPassword" type="password" class="validate">
<label for="icon_telephone">Password</label>
</div>
</div>
<button id="signIn" type="submit" class="btn-large waves-effect waves-light cyan">Sign In</button>
<button id="signUp" type="submit" class="btn-large waves-effect waves-light cyan">Sign Up</button>
<button id="logout" type="submit" class="btn-large waves-effect waves-light cyan hide">Logout</button>
</form>
</div>
<br><br>
</div>
</div>
</div>
<!-- jQuery first, then Popper.js, then Materialize JS and init JS, then Moment.JS, then Firebase.js -->
<script src='https://code.jquery.com/jquery-3.3.1.js' integrity='sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=' crossorigin='anonymous'></script>
<!-- <script src='https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js' integrity='sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q' crossorigin='anonymous'></script> -->
<script src="assets/js/materialize.js"></script>
<script src="assets/js/init.js"></script>
<script src="https://cdn.jsdelivr.net/momentjs/2.12.0/moment.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/4.11.0/firebase.js"></script>
<!-- local js files -->
<script src='assets/js/firebase.js'></script>
<script src='assets/js/gMaps.js'></script>
<script src='assets/js/hCanary.js'></script>
<script src='assets/js/main.js'></script>
</body>
</html>