-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (46 loc) · 1.81 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
<html>
<head>
<title>Login</title>
<link rel="stylesheet" type="text/css" href="css/loginStyle.css">
<script src="js/login.js">
</script>
</head>
<body>
<div class="form">
<table align="center" class="table">
<tr>
<td>Email: </td>
<td><input type="text" id="EMAIL" class="textfield"></td>
</tr>
<tr></tr>
<tr>
<td>Password: </td>
<td><input type="password" id="PASSWORD" class="textfield"></td>
<td>
<div class="tooltip"><img style="border-radius: 50%;" src="images/questionMark.jpg" width="42px" height="33px">
<span class="tooltiptext">
Enter password format here...
</span>
</div>
</td>
</tr>
<tr>
<td></td>
<td align="left"><button class="button button1" id="LOGIN">Login</button></td>
</tr>
</table>
<hr>
<table align="center" class="table">
<tr>
<td align="left"><button class="gbutton gbutton1" id="GSIGNIN">Sign In with Google</button></td>
<td align="right"><a href="register.html">New User? Register Here</a></td>
</tr>
</table>
</div>
<script src="https://www.gstatic.com/firebasejs/4.5.1/firebase.js"></script>
<script src="https://www.gstatic.com/firebasejs/4.5.1/firebase-firestore.js"></script>
<script src = "js/appconfig.js">
// Initialize Firebase
</script>
</body>
</html>