mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-13 10:35:54 +08:00
bba267511c
Signed-off-by: szaimen <szaimen@e.mail.de>
23 lines
1.1 KiB
Twig
23 lines
1.1 KiB
Twig
{% extends "layout.twig" %}
|
|
|
|
{% block body %}
|
|
<div class="login-wrapper">
|
|
<div class="login">
|
|
<img src="/img/logo-blue.svg" style="margin-left: auto;margin-right: auto;display: block;">
|
|
<h1>Nextcloud AIO Login</h1>
|
|
{% if is_login_allowed == true %}
|
|
<p>Log in using your Nextcloud AIO password:</p>
|
|
<form method="POST" action="/api/auth/login">
|
|
<input type="text" autocomplete="off" name="password" placeholder="Password" />
|
|
<input type="hidden" name="{{csrf.keys.name}}" value="{{csrf.name}}">
|
|
<input type="hidden" name="{{csrf.keys.value}}" value="{{csrf.value}}">
|
|
<input type="submit" class="button" value="Log in" />
|
|
</form>
|
|
{% else %}
|
|
<p>The login is blocked since Nextcloud is running. Please use the automatic login from your Nextcloud.<br><br>
|
|
You can unblock the login by running 'sudo docker stop nextcloud-aio-apache'.</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|