16 lines
404 B
HTML
16 lines
404 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body>
|
|
<p>Registriere dich:</p>
|
|
<form method="POST">
|
|
<input type="email" name="email" placeholder="Mail-Adresse">
|
|
<input type="hidden" name="target" value="{{request.args.target}}">
|
|
<input type="submit">
|
|
</form>
|
|
</body>
|
|
</html>
|