-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
65 lines (56 loc) · 2.8 KB
/
login.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="css/signupandlogin.css">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700&display=swap" rel="stylesheet">
</head>
<body>
<section class="container content">
<div class="mask d-flex align-items-center h-100">
<div class="container h-100">
<div class="row d-flex justify-content-center align-items-center h-100">
<div class="col-12 col-md-9 col-lg-7 col-xl-6">
<div class="card" style="border-radius: 15px;">
<div class="card-body p-5">
<h2 class="text-uppercase text-center">Log In</h2>
<img class = "center-block" src="img/logoclear.png" height = 80px>
<form id="login-form">
<div class="form-outline mb-4">
<input type="email" id="email" class="form-control form-control-lg" />
<label class="form-label" for="email">Your Email</label>
</div>
<div class="form-outline mb-4">
<input type="password" id="password" class="form-control form-control-lg" />
<label class="form-label" for="password">Password</label>
</div>
<div class="d-flex justify-content-center">
<button type="submit" class="custom-button btn btn-block btn-lg text-body">Login</button>
</div>
<p class="text-center text-muted mt-5 mb-0">Not a member yet? <a href="signup.html"
class="fw-bold text-body"><u>Sign up here</u></a></p>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Include Firebase SDK -->
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-auth.js"></script>
<!-- Your Firebase configuration script -->
<script src="js/login_firebase.js"></script>
<!-- Your custom JavaScript code -->
<script src="login.js"></script>
<!-- Bootstrap JS and jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.0.7/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>