baleen/views/login/index.twig.html
2024-12-31 16:17:13 +00:00

16 lines
474 B
HTML

<h1>Login</h1>
<form method="post">
{{ csrf() | raw }}
{% if error %}
<div class="alert alert-danger">{{ error }}</div>
{% endif %}
<label for="email">Email address</label>
<input id="email" type="email" name="email" placeholder="Email" required />
<label for="password">Password</label>
<input id="password" type="password" name="password" placeholder="Password" required minlength="8" />
<button type="submit">Login</button>
</form>