-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 853 Bytes
/
index.html
File metadata and controls
31 lines (29 loc) · 853 Bytes
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
<!DOCTYPE html>
<head>
<title>Registreer</title>
<meta charset:"UTF-8">
<link rel="stylesheet" href="https://classless.de/classless.css">
</head>
<body>
<h1>Registreer</h1>
<form action="process-signup.php" method="post">
<div>
<label for="name">Naam</label>
<input type="text" id="name" name="name">
</div>
<div>
<label for="email">Email</label>
<input type="email" id="email" name="email">
</div>
<div>
<label for="password">Wachtwoord</label>
<input type="password" id="password" name="password">
</div>
<div>
<label for="password_confirmation">Repeat password</label>
<input type="password" id="password_confirmation" name="password_confirmation">
</div>
<button>Sign up</button>
</form>
</body>
</html>