-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot-password.html
54 lines (47 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, minimal-ui">
<title>Cryptex - Crypto Exchange Wallet Premium Mobile Template</title>
<link rel="stylesheet" href="vendor/swiper/swiper.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="page page--login" data-page="login">
<!-- HEADER -->
<header class="header header--fixed">
<div class="header__inner">
<div class="header__icon"><a href="index.html"><img src="images/icons/arrow-back.svg" alt="" title=""/></a></div>
</div>
</header>
<div class="login">
<div class="login__content">
<h2 class="login__title">WE GOT YOU COVERED</h2>
<div class="login-form">
<form id="LoginForm" method="post" action="main.html">
<div class="login-form__row">
<label class="login-form__label">Email</label>
<input type="text" name="email" value="" class="login-form__input required email" />
</div>
<div class="login-form__row">
<input type="submit" name="submit" class="login-form__submit button button--main button--full" id="submit" value="RESEND PASSWORD" />
</div>
</form>
<div class="login-form__bottom">
<p>Check your email and follow the instructions to reset your password.</p>
</div>
</div>
</div>
</div>
</div>
<!-- PAGE END -->
<script src="vendor/jquery/jquery-3.5.1.min.js"></script>
<script src="vendor/jquery/jquery.validate.min.js" ></script>
<script src="vendor/swiper/swiper.min.js"></script>
<script src="js/jquery.custom.js"></script>
</body>
</html>