Lerndatenbank/lernplattform/templates/block_register.html
2024-08-08 11:55:21 +02:00

28 lines
1.4 KiB
HTML

<div class="story p-3 shadow-sm">
<div>
<h5>Registrierung</h5>
<p>Registriere dich, um die Plattform zu nutzen. Deine Daten werden nicht an Dritte weitergegeben oder anderweitig anderweitig
verarbeitet. Die dienen lediglich zur Authentifizierung und Speicherung deines Lernfortschrittes.</p>
</div>
<form name="registerForm" method="post" onsubmit="return checkPasswords()">
<div>
<div class="row">
<div class="col py-3">
Benutzername: <input type="text" name="username" class="form-control" placeholder="Benutzername" tabindex="1" required />
<br>
Passwort: <input type="password" id="password" name="password" class="form-control" placeholder="Passwort" tabindex="3" required />
</div>
<div class="col py-3">
EMail: <input type="email" name="email" class="form-control" placeholder="EMail" tabindex="2" required />
<br>
Passwort wiederholen: <input type="password" id="password_repeat" name="password_repeat" class="form-control" tabindex="4" placeholder="Passwort wiederholen" required />
</div>
</div>
</div>
<div class="d-flex justify-content-around mt-3">
<button type="submit" class="btn btn-outline-primary">Registrieren</button>
</div>
</form>
</div>