-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrecover.html
72 lines (64 loc) · 2.03 KB
/
recover.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
64
65
66
67
68
69
70
71
72
<!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>Recover password - Trivago</title>
<link rel="stylesheet" href="styles/recover.css">
<link rel="icon" type="image/x-icon" href="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRdeXTVDu67JZDJNNRO9MhA7OBpUHYgEC54aw&usqp=CAU">
</head>
<body>
<div id="container">
<div id="logo">
<img
src="https://auth.trivago.com/_static/icons/logo.svg"
alt="trivago logo"
/>
</div>
<div id="main">
<h1>
Now you can create a new password
</h1>
<!-- form for enter password -->
<form id="loginForm" onsubmit="handlepassword(event)">
<label
data-testid="password-input-label"
for="password1"
class="BaseInput_label__SGD71"
>Create new password</label
>
<input
class="pw"
id="password1"
type="password"
name="password"
aria-invalid="false"
autocomplete="current-password"
autocapitalize="none"
spellcheck="false"
/>
<label
data-testid="confirm-password-input-label"
for="password2"
class="pw1lable"
>Confirm new password</label
>
<input
class="pw1"
id="password2"
type="password"
name="password"
aria-invalid="false"
autocomplete="current-password"
autocapitalize="none"
spellcheck="false"
/>
<button type="submit" id="goNext" onclick="submitdata()">Save
</button>
</form>
</div>
</div>
</body>
</html>
<script src="scripts/recover.js"></script>