bc44f261ac
register-Formular erstellt content-sites angelegt (unvollständig) prifile-site angelegt (unvollständig) navbar vollständig und searchbar integriert. -> Test auf dev
33 lines
1.4 KiB
HTML
33 lines
1.4 KiB
HTML
<!--
|
|
Form: Registrierung
|
|
Funktion: Erstellung neuer Benutzerkonten
|
|
-->
|
|
<form name="loginForm" action="?pfad=register" method="POST">
|
|
|
|
<div style="width: 50%">
|
|
<div style="width: 130px;">
|
|
<img src="../images/logo.png" alt="" width="120" height="72">
|
|
</div>
|
|
|
|
<h1 style="width: 50%; text-align: center">Jetzt Registrieren!</h1><br>
|
|
|
|
<label id="inputEmail">Email address</label>
|
|
<p style="width: 80%;"> Email:</p>
|
|
<input type="email" name="email" style="width: 80%;" placeholder="mustermann@web.de" required autofocus>
|
|
<p style="width: 80%;"> Vorname:</p>
|
|
<input type="text" name="vorname" style="width: 80%;" placeholder="Max" required autofocus>
|
|
<p style="width: 80%;"> Nachname:</p>
|
|
<input type="text" name="nachname" style="width: 80%;" placeholder="Mustermann" required autofocus>
|
|
|
|
<label id="inputPassword">Passwort</label>
|
|
<p style="width: 80%;"> Passwort:</p>
|
|
<input type="password" name="password" style="width: 80%;" placeholder="Passwort" required>
|
|
<div style="width: 80%;">
|
|
<label>
|
|
<input type="checkbox" value="remember-me"> angemeldet bleiben
|
|
</label>
|
|
</div>
|
|
<button type="submit" value="anmelden" name="loginSubmit" style="width: 80%;">kostenlos registrieren</button>
|
|
</div>
|
|
</form>
|