Sammlung
This commit is contained in:
57
Sammlung/web_p4/content/registration_form.txt
Normal file
57
Sammlung/web_p4/content/registration_form.txt
Normal file
@ -0,0 +1,57 @@
|
||||
## -*- coding: utf-8 -*-
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Registrierung</title>
|
||||
<link rel="stylesheet" type="text/css" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Registrierung</h1>
|
||||
</header>
|
||||
<section>
|
||||
<form name="RegisterForm" action="save" method="post">
|
||||
<table class="form">
|
||||
<tr>
|
||||
<td>Vorname:</td>
|
||||
<td><input type="text" name="vorname" placeholder="Vorname" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Nachname:</td>
|
||||
<td><input type="text" name="nachname" placeholder="Nachname" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Anzahl Begleitpersonen:</td>
|
||||
<td><select name="begleitpersonen" >
|
||||
<option value="0">0</option>
|
||||
<option value="1">1</option>
|
||||
<option value="2">2</option>
|
||||
<option value="3">3</option>
|
||||
<option value="4">4</option>
|
||||
</select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Studiengang:</td>
|
||||
<td><input type="text" name="studiengang" placeholder="z.B Informatik B.Sc" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Betreuer:</td>
|
||||
<td><input type="text" name="betreuer" placeholder="Name des Betreuers" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Kennwort:</td>
|
||||
<td><input type="password" name="passwort" placeholder="Kennwort" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td><input type="submit" value="Anmelden!"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
<form action="./index" method="get">
|
||||
<button>Abbrechen</button>
|
||||
</form>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user