-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgot-password.html
30 lines (29 loc) · 1.02 KB
/
forgot-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
<!DOCTYPE html>
<html lang="pl">
<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>Wikar's Audiobooks</title>
<link rel="stylesheet" type="text/css" href="style/forgot-password.css" />
<link
href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>Wikar's Audiobooks</header>
<main>
<div class="form-container">
<h2 class="form-header">Przypomnienie hasła</h2>
<span
>Podaj swój adres e-mail, a my wyślemy na niego link służący do
wygenerowania nowego hasła.</span
>
<input type="email" placeholder="Adres e-mail" />
<button onclick="onResetPassword()">Wygeneruj nowe hasło</button>
</div>
</main>
<script src="script/forgot-password.js"></script>
</body>
</html>