19 lines
517 B
Plaintext
19 lines
517 B
Plaintext
{% extends 'layouts/base.njk' %}
|
|
|
|
{% set title = 'ALDAP - Early access' %}
|
|
|
|
{% block body %}
|
|
<div class="container">
|
|
<div class="panel">
|
|
<h1>{{ title }}</h1>
|
|
|
|
<form action="{{ route('prelaunch-wall') }}" method="POST">
|
|
{{ macros.field(_locals, 'password', 'password', null, 'Enter password') }}
|
|
|
|
<button type="submit">Authenticate</button>
|
|
|
|
{{ macros.csrf(getCSRFToken) }}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |