Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
eskopp committed Nov 13, 2024
1 parent 9b5435c commit 031b527
Showing 1 changed file with 72 additions and 58 deletions.
130 changes: 72 additions & 58 deletions static/register/index.html
Original file line number Diff line number Diff line change
@@ -1,73 +1,87 @@
<!DOCTYPE html>
<html lang="de">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Formulardaten</title>
<link rel="stylesheet" href="https://isst25.ilmenauer-schachverein.de/register/style.css">
</head>

<body>
<link
rel="stylesheet"
href="https://isst25.ilmenauer-schachverein.de/register/style.css"
/>
</head>

<form action="https://isst25.ilmenauer-schachverein.de/register/submit.php" method="POST">
<label for="vorname">Vorname*</label>
<input type="text" id="vorname" name="vorname" required>
<body>
<form
action="https://isst25.ilmenauer-schachverein.de/register/submit.php"
method="POST"
>
<label for="vorname">Vorname*</label>
<input type="text" id="vorname" name="vorname" required />

<label for="nachname">Nachname*</label>
<input type="text" id="nachname" name="nachname" required>
<label for="nachname">Nachname*</label>
<input type="text" id="nachname" name="nachname" required />

<label for="verein">Verein (falls vorhanden)</label>
<input type="text" id="verein" name="verein">
<label for="verein">Verein (falls vorhanden)</label>
<input type="text" id="verein" name="verein" />

<label for="geburtsdatum">Geburtsdatum*</label>
<input type="date" id="geburtsdatum" name="geburtsdatum" required>
<label for="geburtsdatum">Geburtsdatum (TT.MM.JJJJ)*</label>
<input
type="text"
id="geburtsdatum"
name="geburtsdatum"
placeholder="TT.MM.JJJJ"
pattern="\d{2}\.\d{2}\.\d{4}"
title="Bitte das Format TT.MM.JJJJ verwenden"
required
/>

<label for="handy">Handynummer (optional)</label>
<input type="text" id="handy" name="handy">
<label for="handy">Handynummer (optional)</label>
<input type="text" id="handy" name="handy" />

<label for="email">E-Mail-Adresse*</label>
<input type="email" id="email" name="email" required>
<label for="email">E-Mail-Adresse*</label>
<input type="email" id="email" name="email" required />

<label>Rabattberechtigt?</label>
<div class="radio-group">
<input type="radio" id="nein" name="rabatt" value="nein" checked>
<label for="nein">Nein</label>
</div>
<div class="radio-group">
<input type="radio" id="u18" name="rabatt" value="ja_U18">
<label for="u18">U18 (Stichtag 01.01)</label>
</div>
<div class="radio-group">
<input type="radio" id="student" name="rabatt" value="ja_Student">
<label for="student">Student</label>
</div>
<div class="radio-group">
<input type="radio" id="renter" name="rabatt" value="ja_Rentner">
<label for="renter">Rentner</label>
</div>
<label>Rabattberechtigt?</label>
<div class="radio-group">
<input type="radio" id="nein" name="rabatt" value="nein" checked />
<label for="nein">Nein</label>
</div>
<div class="radio-group">
<input type="radio" id="u18" name="rabatt" value="ja_U18" />
<label for="u18">U18 (Stichtag 01.01)</label>
</div>
<div class="radio-group">
<input type="radio" id="student" name="rabatt" value="ja_Student" />
<label for="student">Student</label>
</div>
<div class="radio-group">
<input type="radio" id="renter" name="rabatt" value="ja_Rentner" />
<label for="renter">Rentner</label>
</div>

<br><br>
<label>Sonstiges</label>
<div class="checkbox-group">
<input type="checkbox" id="bestaetigung" name="bestaetigung">
<label for="bestaetigung">Ich wünsche eine Bestätigung der Anmeldung per E-Mail</label>
</div>
<br /><br />
<label>Sonstiges</label>
<div class="checkbox-group">
<input type="checkbox" id="bestaetigung" name="bestaetigung" />
<label for="bestaetigung"
>Ich wünsche eine Bestätigung der Anmeldung per E-Mail</label
>
</div>

<div class="checkbox-group">
<input type="checkbox" id="agb" name="agb" required>
<label for="agb">Ich stimme den AGB und der Nutzung meiner Daten zu*</label>
</div>
<div class="checkbox-group">
<input type="checkbox" id="agb" name="agb" required />
<label for="agb"
>Ich stimme den AGB und der Nutzung meiner Daten zu*</label
>
</div>

<!-- Honey Pot Field (hidden from users) -->
<div style="display:none;">
<label for="honeypot">Leave this field empty</label>
<input type="text" id="honeypot" name="honeypot">
</div>
<br>
<input type="submit" value="Absenden">
<!-- Honey Pot Field (hidden from users) -->
<div style="display: none">
<label for="honeypot">Leave this field empty</label>
<input type="text" id="honeypot" name="honeypot" />
</div>
<br />
<input type="submit" value="Absenden" />
</form>

</body>

</body>
</html>

0 comments on commit 031b527

Please sign in to comment.