forked from ElectronicsMartApi/electronicsmartapi.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecover_by_old_pass.html
44 lines (42 loc) · 1.45 KB
/
recover_by_old_pass.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/stylesheets/login_register.css">
<script src="./assets/javascripts/recover_by_old_pass.js"></script>
<title>Document</title>
</head>
<body>
<div class="container" id="container">
<div class="form-container sign-in-container">
<div class="form">
<h1 id="login">Recover Account</h1>
<input id="old_pass" type="password" placeholder="Enter an Old Password" required />
<input id="pwd" type="password" placeholder="New Password" required />
<input id="confirm_pwd" type="password" placeholder="Confirm Password" required />
<br>
<button onclick="set_new_pass()">Set New Password</button>
</div>
</div>
<div class="overlay-container">
<div class="overlay">
<div class="overlay-panel overlay-right">
<div class="login">
<h1>Security Tips!</h1>
<br>
<p>Never use personal information.</p>
<p>Prioritize password length.</p>
<p>Never repeat passwords.</p>
<p>Avoid using real words.</p>
</div>
</div>
</div>
</div>
</div>
<footer>
</footer>
</body>
</html>