-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreat-newpassword.html
More file actions
33 lines (30 loc) · 892 Bytes
/
creat-newpassword.html
File metadata and controls
33 lines (30 loc) · 892 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create New Password</title>
<link rel="stylesheet" href="styles.css">
<script defer src="script.js"></script>
</head>
<body>
<section>
<h1>Create New Password</h1>
<div class="inputbox">
<icon-icon name="lock-closed-outline"></icon-icon>
<input type="password" required>
<label for="">New Password</label>
</div>
<div class="inputbox">
<icon-icon name="lock-closed-outline"></icon-icon>
<input type="password" required>
<label for="">Confirm Password</label>
</div>
<a href="index.html"><button>Submit</button></a>
<div class="login">
<p>Remembered your password?</p>
<a href="index.html">Login</a>
</div>
</section>
</body>
</html>