-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
34 lines (34 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Online Shopping 2019</title>
<link rel="stylesheet" href="assets/index.css">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<script src="https://www.gstatic.com/firebasejs/3.1.0/firebase.js"></script>
<script src="scripts/utils/firebase.js"></script>
</head>
<body>
<div class="container">
<h4 class="alert-danger text-center" id='error'></h4>
<h1 id="login" class="alert-success text-center">Login</h1>
<div class="form-group">
<label for="">UserID</label>
<input id="userid" class="form-control" type="text" placeholder="Type UserId here">
</div>
<div class="form-group">
<label for="">Password</label>
<input id="password" class="form-control" type="password" placeholder="Type Password Here">
</div>
<div class="form-group">
<button class="btn btn-success" onclick="doLogin()">Login</button>
<button class="btn btn-danger">Reset</button>
</div>
<script src="scripts/users/models/user.js"></script>
<script src="scripts/users/models/useroperation.js"></script>
<script src="scripts/login.js"></script>
</div>
</body>
</html>