-
Notifications
You must be signed in to change notification settings - Fork 12
/
forgetPassword.html
30 lines (29 loc) · 1.15 KB
/
forgetPassword.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="login.css">
<title>Forgot Password - Propoplex</title>
</head>
<body>
<section>
<div class="form-box">
<div class="form-value">
<form action="">
<h2>Forgot Password</h2>
<p style="text-align: center; color: #fff; margin-top: 10px;">Enter your email and reset your Password</p>
<div class="inputbox">
<ion-icon name="mail-outline"></ion-icon>
<input type="email" required>
<label for="">Email</label>
</div>
<button>Send Email</button>
<div class="register">
<p>Don't have a account <a href="signup.html">Register</a></p>
</div>
</form>
</div>
</div>
</section>
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
</body>