-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (47 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>login</title>
<!--Style Sheets start-->
<link href="./css/bootstrap.min.css" rel="stylesheet">
<link href="./css/style.css" rel="stylesheet">
<link href="./css/logincss.css" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link href="./css/webfonts.css" rel="stylesheet">
<!--Style sheets end-->
<!--scrpts start-->
<script src="./js/jquery.min.js"></script>
<script src="./js/scripts.js"></script>
<!--scrpts end-->
</head>
<body>
<div class="col-md-4 login-sec">
<h2 class="text-center">Login</h2>
<!--Form to gather the login details of the user start-->
<form class="login-form text-center" >
<div class="form-group">
<br>
<input type="text" class="form-control" style="border-radius: 20px;width:300px ; margin-left: 11px" placeholder="Email" id="email">
</div>
<div class="form-group">
<br>
<input type="password" style="border-radius: 20px;width:300px; margin-left: 11px" class="form-control" placeholder="Password" id="password">
</div>
<div class="form-check">
Don't have an account? <a href="./pages/register.html"><span style="color: #299AFB">Register</span></a>
</div>
<div class="text-center">
<br>
<button type="button" class="btn btn-login" onclick="login()">Login</button>
</div>
</form>
<!--Form to gather the login details of the user end-->
</div>
<!-- javascript file linking -->
<script src="https://www.gstatic.com/firebasejs/5.5.3/firebase.js"></script>
<script src="./js/config.js"></script>
<script src="./js/auth.js"></script>
</body>
</html>