-
Notifications
You must be signed in to change notification settings - Fork 0
/
Registrieren.html
33 lines (31 loc) · 989 Bytes
/
Registrieren.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
<!DOCTYPE html>
<html>
<head>
<link href="style.css" type="text/css" rel="stylesheet">
<title>Registrieren</title>
</head>
<body>
<div class="box box1">
<h1>Registrieren</h1>
</div>
<div class="container" method="post" action="register.php">
<div class="box box3">
<form action="register.php" method="post">
<table>
<tr>
<td>Benutzer:</td>
<td><input type="text" name="hBenutzer"></td>
</tr>
<tr>
<td>Passwort:</td>
<td><input type="password" name="hPasswort"></td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="Registrieren"></td>
</tr>
</table>
</form>
</div>
</div>
</body>
</html>