-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathregistration.html
43 lines (43 loc) · 2.47 KB
/
registration.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
<!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="art.png">
<script src="script.js"></script>
<title>
Finder
</title>
</head>
<body>
<header>
<div class="logo">
<a href="index.html" class="home-button">🏠</a>
<img src="art.png" alt="Logo">
<a href="login.html">Login</a>
</div>
</header>
<form class="login">
<div><b>Gamertag</b></div><div><input type="text" required id="gametag" class="regi" maxlength="32" placeholder="Gamertag"></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"></div>
<div><b>Games</b></div><div><input type="text" id="spiele" class="regi" placeholder="Games"></div>
<div><b>Foto</b></div><div><input type="file" accept="image/png, image/jpeg, image/jpg image/heic" multiple5 id="avatar" class="regi"></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="ansValidation()"><a href="index.html"></a></div>
</form>
</div>
<footer>
<div class="footer">
<div><a href="AGB.html"> AGB's</a></div>
<div><a href="DSV.html"> Datenschutz</a></div>
<div><a href="impressum.html"> Impressum</a></div>
</div>
</footer>
</body>
</html>