-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistreren.html
More file actions
42 lines (38 loc) · 1.48 KB
/
registreren.html
File metadata and controls
42 lines (38 loc) · 1.48 KB
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
<!DOCTYPE html>
<html lang="nl">
<head>
<title>Transavia 99 verhalen</title>
<link rel="stylesheet" href="styles/aanmelden.css" type="text/css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html"><img src="images/transavia2.png" alt="logo transavia"></a></li>
<li><a href="favorietenlijst.html"><img src="images/hartje.png" alt="hartje"></a></li>
<li><a href="login.html"><img src="images/aanmelden.png" alt="aanmelden"></a></li>
</ul>
</nav>
<div id="counter">0</div>
</header>
<main>
<section>
<h1>Registreren bij Transavia stories</h1>
<form action="index.html">
<fieldset>
<legend>Account aanmaken Transavia stories</legend>
<label for="firstname">Voornaam</label><input type="text" id="firstname" required>
<label for="lastename">Achternaam</label><input type="text" id="lastename" required>
<label for="e-mail">Emailadres</label><input type="email" id="e-mail" placeholder="gebruiker@domein.com" required>
<label for="phone">Telefoonnummer</label><input type="tel" id="phone" placeholder="0612345678" required>
<p>Ik heb nog al een account en wil <a href="login.html">aanmelden</a></p>
<button type="submit">Registreren</button>
</fieldset>
</form>
</section>
</main>
<script src="js/functies.js"></script>
</body>
</html>