-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.37 KB
/
Copy pathindex.html
File metadata and controls
42 lines (42 loc) · 1.37 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="de">
<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>Registrieren</title>
<link rel="stylesheet" href="style/main.css" />
</head>
<body>
<form action="" method="post">
<div class="form">
<h1>Registrieren</h1>
<span class="input">
<span>
<p>Vorname:</p>
<input type="text" name="" id="" placeholder="Raphael" required />
</span>
<span>
<p>Nutzername:</p>
<input type="text" name="" id="" placeholder="Raphi" required/>
</span>
<span>
<p>Passwort:</p>
<input type="text" name="" id="" placeholder="geheim" required/>
</span>
<span>
<p>Mail:</p>
<input type="mail" name="" id="" placeholder="mail@test.at" required/>
</span>
</span>
<div class="unten">
<span class="weiter">
<input type="submit" value="Absenden" class="mit" />
<input type="reset" value="Eingeben löschen" class="set" />
<p>Auf der Website <a href="login.html">einloggen</a>.</p>
</span>
</div>
</div>
</form>
</body>
</html>