32 lines
1.1 KiB
PHP
32 lines
1.1 KiB
PHP
<!--
|
|
Form: Registrierung
|
|
Funktion: Erstellung neuer Benutzerkonten
|
|
-->
|
|
<main class="login-page">
|
|
<div class="login-container">
|
|
|
|
<h1>Jetzt Registrieren!</h1>
|
|
|
|
<form>
|
|
<p class="input-label">Email:</p>
|
|
<input type="email" name="email" class="login-input" placeholder="mustermann@web.de" required>
|
|
|
|
<p class="input-label">Vorname:</p>
|
|
<input type="text" name="vorname" class="login-input" placeholder="Max" required>
|
|
|
|
<p class="input-label">Nachname:</p>
|
|
<input type="text" name="nachname" class="login-input" placeholder="Mustermann" required>
|
|
|
|
<p class="input-label">Passwort:</p>
|
|
<input type="password" name="password" class="login-input" placeholder="Passwort" required>
|
|
|
|
<div class="checkbox-wrapper">
|
|
<label>
|
|
<input type="checkbox" value="remember-me"> angemeldet bleiben
|
|
</label>
|
|
</div>
|
|
|
|
<button type="submit" value="anmelden" name="loginSubmit" class="login-button">kostenlos registrieren</button>
|
|
</form>
|
|
</div>
|
|
</main> |