-
Notifications
You must be signed in to change notification settings - Fork 1
/
password.html
58 lines (49 loc) · 1.59 KB
/
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
55
56
57
58
<!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>Enter password - Trivago</title>
<link rel="stylesheet" href="styles/password.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>
Enter your password
</h1>
<!-- form for enter password -->
<form id="loginForm" onsubmit="handlepassword(event)">
<label
data-testid="password-input-label"
for="email"
class="BaseInput_label__SGD71"
>Password</label
>
<input
class="pw"
id="password"
type="password"
name="password
aria-invalid="false"
autocomplete="current-password"
autocapitalize="none"
spellcheck="false"
/>
<button type="submit" id="login" onclick="submitdata()">Log in
</button>
</form>
<a href="forgetpw.html"> <p>
Forgot your password? </p> </a>
</div>
</body>
</html>
<script src="scripts/password.js"></script>