-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (73 loc) · 3.63 KB
/
index.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
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap" rel="stylesheet">
<title>Sign-up</title>
<script src="./script.js" defer></script>
</head>
<body>
<div class="image-container">
<img src="./images/cat_bed-6001768.jpg" alt="Lady reading in a bed with her cat.">
<div class="logo">
<img src="./images/output.png" alt="Cat-reading logo">
<div id="brand">PURRFEKT LESEN</div>
</div>
</div>
<div class="body-container">
<div class="form-container">
<form novalidate>
<div>
<h1>Join the Purrfekt Lesen World!</h1>
<p>Ready to embark on this exciting journey with<b> Mona</b>, die Katze?</p>
<p>Let's make reading a purr-fect German adventure!</p>
<p>Create an account to get started!</p>
<div id="form-columns">
<div class="form-element">
<label for="name">Name</label>
<input type="text" id="name" minlength="3" aria-required="true" required>
<span class="error" aria-live="polite"></span>
</div>
<div class="form-element">
<label for="email">Email</label>
<input type="email" id="email" aria-required="true" required>
<span class="error" aria-live="polite"></span>
</div>
<div class="form-element">
<label for="bdate">Birth Date</label>
<input type="date" id="bdate" aria-required="true">
<span class="error" aria-live="polite"></span>
</div>
<div class="form-element">
<label for="language">Language I know</label>
<select name="language" id="language" aria-required="true" required>
<option value="english">English</option>
<option value="spanish">Spanish</option>
<option value="french">French</option>
</select>
<span class="error" aria-live="polite"></span>
</div>
<div class="form-element">
<label for="pass">Password</label>
<input type="password" id="pass" minlength="8" aria-required="true" required>
<span class="error" aria-live="polite"></span>
</div>
<div class="form-element">
<label for="confirm-pass">Confirm Password</label>
<input type="password" id="confirm-pass" minlength="8" aria-required="true" required>
<span class="error" aria-live="polite"></span>
</div>
</div>
<div id="button">
<button type="submit">Sign Up</button>
</div>
</div>
</form>
</div>
</div>
</body>
</html>