1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-28 09:39:41 +02:00
codex.docs/src/backend/views/auth.twig

17 lines
428 B
Twig
Raw Normal View History

{% extends 'layout.twig' %}
{% block body %}
<form class="auth-form" method="post" action="/auth">
<h1>
┬┴┬┴┤ ͜ʖ ͡°) ├┬┴┬┴
</h1>
<p>
Enter a password to access pages editing
</p>
<input type="hidden" name="_csrf" value={{ csrfToken }}>
<input type="password" name="password" placeholder="Password">
<input type="submit" value="Login">
</form>
{% endblock %}