-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgot_password.html
63 lines (58 loc) · 2.65 KB
/
forgot_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
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forgot Password</title>
<!-- Link font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Link css -->
<link rel="stylesheet" href="./css/forgot_password.css">
<!-- <link rel="stylesheet" href="./css/"> -->
<!-- Link owl carousel -->
<link rel="stylesheet" href="./css/owl.carousel.min.css">
<link rel="stylesheet" href="./css/owl.theme.default.min.css">
<!-- Link JQuery -->
<script src="https://code.jquery.com/jquery-3.6.3.js" integrity="sha256-nQLuAZGRRcILA+6dMBOvcRh5Pe310sBpanc6+QBmyVM=" crossorigin="anonymous"></script>
</head>
<body>
<div class="main-wrapper">
<div class="left-wrapper">
<div class="logo">
<img src="./images/header_logo.svg" alt="logo-image" class="logo-img">
</div>
<div class="back-to-login">
<a href="#" class="font-weight-500 text-black back-login"><i class="fas fa-chevron-left"></i> Back to login</a>
</div>
<h1 class="text-black font-weight-700">Forgot your password?</h1>
<p class="text-dark-green font-weight-400">Don’t worry, happens to all of us. Enter your email below to recover your password</p>
<form action="" id="form" class="form-form" onsubmit="return validateForm()">
<div class="form-getpass">
<input type="text" id="email" class="input-box" name="email" required>
<label for="" id="error-label-email">Email</label>
</div>
<span id="errorEmailText" ></span>
<input type="submit" id="submitButton" value="Submit" class="btn btn-login font-weight-600 dark-green bg-primary">
</form>
</div>
<div class="right-wrapper">
<div class="owl-login owl-carousel owl-theme">
<div class="item">
<img src="./images/login_1.png" alt="">
</div>
<div class="item">
<img src="./images/login_2.png" alt="">
</div>
<div class="item">
<img src="./images/khangdep.jpg" alt="">
</div>
</div>
</div>
</div>
</body>
<script src="./js/jquery-3.6.1.min.js"></script>
<script src="./js/owl.carousel.min.js"></script>
<script src="js/login.js"></script>
<script src="./js/error.js"></script>
</html>