-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (41 loc) · 1.66 KB
/
index.html
File metadata and controls
44 lines (41 loc) · 1.66 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
<html>
<head>
<title>Log In</title>
<script src='https://cdn.firebase.com/js/client/2.0.4/firebase.js'></script>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'></script>
<script src='https://code.jquery.com/ui/1.11.4/jquery-ui.min.js'></script>
<script src='js/index.js'></script>
<link rel="stylesheet" href="styles/jquery-ui.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/index.css" type="text/css">
<style>
.dlg-no-close .ui-dialog-titlebar-close {
display: none;
}
#dialogEmail #dialogPass {
diplay: none;
}
</style>
</head>
<body onload="firstRun()">
<div id="dialogEmail" title="Error">Please enter an email address.</div>
<div id="dialogPass" title="Error">Please enter a password.</div>
<div class="page-header container text-center">
<h1>International Alert Security App</h1>
</div>
<div class="container text-center">
<h3>Log In</h3>
</div>
<div id="container" class="info">
<p>Email Address
<input class="textbox" type="email" id="name" placeholder="Enter your email" value="">
</p>
<p>Password
<input class="textbox" type="password" id="password" placeholder="Enter your password">
</p>
<button onClick="forgotPass()" class="forgotpass">Forgot Password</button>
<br>
</div>
<button class="submit" onclick="authMe()">Login</button>
</body>
</html>