-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
56 lines (49 loc) · 2.23 KB
/
signup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/x-icon" href="IMG_1257.png">
<script src="script.js"></script>
<title>
Friends-signup
</title>
</head>
<body>
<header>
<div><img src="IMG_1257.png" class="logo"></div>
<div></div>
<div><a href="login.html">login</a></div>
</header>
<form class="login">
<div><b>Username</b></div>
<div><input type="text" required id="gametag" class="regi" maxlength="32" placeholder="Username"></div>
<div><b>Email</b></div>
<div><input type="email" required id="email" class="regi" placeholder="Email-Adresse"></div>
<div><b>Geburtstag</b></div>
<div><input type="date" required id="geburtsdatum" class="regi"></div>
<div><b>Pronomen</b></div>
<div><input type="text" id="pronomen" class="regi" placeholder="Pronomen" required></div>
<div><b>Interessen</b></div>
<div><input type="text" id="interessen" class="regi" placeholder="z.b. Games"></div>
<div><b>Passwort</b></div>
<div><input type="password" required name="password" id="password" class="regi" placeholder="Passwort"></div>
<div><b>Passwort wiederholen</b></div>
<div><input type="password" required name="confirmPassword" id="confirmPassword" class="regi"
placeholder="Passwort wiederholen"></div>
<div><b>Ich habe die <a href="AGB.html">AGB's</a> gelesen und akzeptiere sie</b></div>
<div><input type="checkbox" required class="regi"></div>
<div><b>Ich habe die <a href="DSE.html">Datenschutzerklärung</a> gelesen und akzeptiere sie</b></div>
<div><input type="checkbox" required class="regi"></div>
<div><input type="submit" onclick="registration()" value="Registrieren"></div>
</form>
<footer>
<h2 class="Überschrift">Impressum</h2><p class="impressum">Jolan (Datenverarbeitung)<br>Nic (HTML und CSS)<br>Jakob (HTML und
CSS)<br>Karl (Graphik
und Design)<br>Valentin (Präsentation)<br>DJ (Präsentation)</p>
</footer>
</body>
</html>
</body>
</html>