-
Notifications
You must be signed in to change notification settings - Fork 3
/
forget_password.html
58 lines (53 loc) · 2.91 KB
/
forget_password.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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>Forge Password | qbytAdmin</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap" rel="stylesheet">
<!-- Stylesheet -->
<link rel="stylesheet" href="fontawesome/css/all.min.css">
<link rel="stylesheet" href="css/vendor/bootstrap-4.3.1/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<!-- Theme color -->
<meta name="theme-color" content="#fafafa">
</head>
<body class="position-relative">
<!-- Main content start -->
<div class="login-page d-flex flex-row justify-content-center align-items-center">
<!-- Login card -->
<div class="card mx-3 mx-md-0 border-0 rounded-lg">
<div class="card-body">
<!-- Row -->
<div class="row">
<!-- Left side -->
<div class="col-md-6 border-0 border-md-right">
<!-- Brand -->
<div class="login-brand m-3 m-md-0 d-flex justify-content-center align-items-center">
<img src="img/QbyteIcon.png" alt="image" class="w-25">
</div>
<form action="index.html">
<h5 class="text-dark my-4">Forgot Password</h5>
<!-- Email -->
<div class="form-group mb-4">
<label for="email" class="text-muted">Email Address</label>
<input id="email" class="form-control badge-pill bg-light" type="text" name="email">
</div>
<!-- Submit button -->
<button type="submit" class="btn btn-primary btn-outline-primary badge-pill btn-block w-75 m-auto">Reset Password</button>
<p class="text-center mt-3"><a href="#" >Sign in</a></p>
</form>
</div>
<!-- Right side -->
<div class="col-md-6 d-flex flex-column justify-content-center align-items-center pt-3 pt-md-0">
<button class="btn btn-raised btn-primary btn-icon m-2 badge-pill btn-block w-75"><i class="fas fa-at"></i> <p class="d-inline">Sign up with Email</p></button>
<button class="btn btn-raised btn-google btn-icon m-2 badge-pill btn-block w-75"><i class="fab fa-google"></i> <p class="d-inline">Sign up with Google</p></button>
<button class="btn btn-raised btn-facebook btn-icon m-2 badge-pill btn-block w-75"><i class="fab fa-facebook-f"></i> <p class="d-inline">Sign up with Facebook</p></button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>