rainbox.email/views/login.njk

25 lines
764 B
Plaintext
Raw Normal View History

2020-04-25 09:41:22 +02:00
{% extends 'layouts/base.njk' %}
{% set title = 'Example App - Hello world!' %}
{% block body %}
<h1>Login</h1>
<div class="container">
<div class="panel center">
2020-07-25 10:48:56 +02:00
<form action="{{ route('auth') }}" method="POST">
{{ macros.field(_locals, 'text', 'username', null, 'Your username', null, 'required') }}
2020-04-25 09:41:22 +02:00
{{ macros.field(_locals, 'password', 'password', null, 'Your password', null, 'required') }}
<button type="submit"><i data-feather="log-in"></i> Login</button>
2020-04-25 09:41:22 +02:00
2020-11-02 22:16:51 +01:00
{{ macros.csrf(getCsrfToken) }}
2020-04-25 09:41:22 +02:00
</form>
<p>
<a href="{{ route('register') }}">I don't have an account</a>
</p>
</div>
</div>
2020-11-02 22:16:51 +01:00
{% endblock %}