mirror of
https://github.com/codex-team/codex.docs.git
synced 2025-07-28 09:39:41 +02:00
12 lines
298 B
Twig
12 lines
298 B
Twig
|
{% extends 'layout.twig' %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>{{header}}</h1>
|
||
|
<form method="post" action="/auth">
|
||
|
<input type="hidden" name="_csrf" value={{csrfToken}}>
|
||
|
<input type="password" name="password" placeholder="Password">
|
||
|
<input type="submit" value="login">
|
||
|
</form>
|
||
|
{% endblock %}
|
||
|
|