1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-28 17:49:40 +02:00
codex.docs/src/views/auth.twig

17 lines
426 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 %}