- Introduced new styles for the login page, enhancing layout and responsiveness. - Updated the login view to utilize the new styles and improve user feedback for login errors and success messages. - Removed unused controllers and views related to contact and login functionalities to streamline the codebase. - Adjusted error message handling in the AuthController for better clarity on password requirements.
28 lines
789 B
PHTML
28 lines
789 B
PHTML
<?php
|
|
include dirname(__DIR__) . '/header.phtml';
|
|
?>
|
|
|
|
<div class="inhalt">
|
|
<div class="login-container">
|
|
<h1>Anmelden</h1>
|
|
<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>
|
|
<button class="button-loggin">Login</button>
|
|
<a class="link-passwort-vergessen">Passwort vergessen?</a>
|
|
<a class="link-konto-erstellen">Konto erstellen</a>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
include dirname(__DIR__) . '/footer.phtml';
|
|
?>
|
|
|