56 lines
2.2 KiB
PHTML
56 lines
2.2 KiB
PHTML
<?php
|
|
include dirname(__DIR__) . '/header.phtml';
|
|
?>
|
|
|
|
<div class="inhalt">
|
|
<div class="login-container">
|
|
<h1>Registrieren</h1>
|
|
<form class="form-horizontal" action="index.php" method="post">
|
|
<input type="hidden" name="controller" value="Auth">
|
|
<input type="hidden" name="do" value="register">
|
|
<label>
|
|
<input class="input-vorname" type="text" name="vorname" placeholder="Vorname">
|
|
</label>
|
|
<label>
|
|
<input class="input-nachname" type="text" name="nachname" placeholder="Nachname">
|
|
</label>
|
|
<label>
|
|
<input class="input-email" type="text" name="email" placeholder="E-Mail">
|
|
</label>
|
|
<label>
|
|
<input class="input-passwort" type="password" name="password" placeholder="Passwort">
|
|
</label>
|
|
<label>
|
|
<input class="input-passwort-repeat" type="password" name="password_repeat" placeholder="Passwort wiederholen">
|
|
</label>
|
|
<label>
|
|
<input class="input-strasse" type="text" name="strasse" placeholder="Straße">
|
|
</label>
|
|
<label>
|
|
<input class="input-hausnr" type="text" name="hausnr" placeholder="Hausnr.">
|
|
</label>
|
|
<label>
|
|
<input class="input-postleitzahl" type="text" name="plz" placeholder="Postleitzahl">
|
|
</label>
|
|
<label>
|
|
<input class="input-ort" type="text" name="ort" placeholder="Ort">
|
|
</label>
|
|
<label>
|
|
<input class="input-land" type="text" name="land" placeholder="Land">
|
|
</label>
|
|
<label>
|
|
<input class="input-tel" type="text" name="tel" placeholder="Telefonnr.">
|
|
</label>
|
|
<button class="button-register" type="submit">Registrieren</button>
|
|
</form>
|
|
<div style="text-align:center; margin-top: 1.5em;">
|
|
<a href="?controller=Auth&do=showLoginForm" class="login-link">Bereits registriert? Hier einloggen</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
include dirname(__DIR__) . '/footer.phtml';
|
|
?>
|
|
|