- Implemented a new method in AuthController to display the registration form with localized labels and session error handling. - Updated the login view to include a link for account creation. - Enhanced the registration view with a link to the login form. - Removed the obsolete showRegisterPage view to streamline the codebase.
71 lines
2.6 KiB
PHTML
71 lines
2.6 KiB
PHTML
<?php
|
|
include dirname(__DIR__) . '/header.phtml';
|
|
?>
|
|
<div class="inhalt">
|
|
<div class="login-container">
|
|
<h1>Registrieren</h1>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-vorname" type="text" placeholder="Vorname">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-nachname" type="text" placeholder="Nachname">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-email" type="text" placeholder="E-Mail">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-passwort" type="text" placeholder="Passwort">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-passwort-repeat" type="text" placeholder="Passwort wiederholen">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-strasse" type="text" placeholder="Straße">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-hausnr" type="text" placeholder="Hausnr.">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-postleitzahl" type="text" placeholder="Postleitzahl">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-ort" type="text" placeholder="Ort">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-land" type="text" placeholder="Land">
|
|
</label>
|
|
</form>
|
|
<form class="form-horizontal" action="#" method="post">
|
|
<label>
|
|
<input class="input-tel" type="text" placeholder="Telefonnr.">
|
|
</label>
|
|
</form>
|
|
<button class="button-register">Registrieren</button>
|
|
<div style="text-align:center; margin-top: 1.5em;">
|
|
<a href="?controller=Auth&do=showAuthForm" class="login-link">Bereits registriert? Hier einloggen</a>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
include dirname(__DIR__) . '/footer.phtml';
|
|
?>
|
|
|