mirror of
https://github.com/journeyman-cc/smeagol.git
synced 2026-04-12 18:05:06 +00:00
28 lines
1.2 KiB
HTML
28 lines
1.2 KiB
HTML
{% extends "templates/base.html" %}
|
|
{% block content %}
|
|
<div id="content" class="auth">
|
|
<form action="{{servlet-context}}/auth" method="POST">
|
|
{% csrf-field %}
|
|
<input type="hidden" name="redirect-to" value="{{redirect-to}}"/>
|
|
{% if user %}
|
|
<p class="widget">
|
|
<label for="submit">{% i18n save-prompt %}</label>
|
|
<input name="action" id="action" type="submit" class="action-dangerous" value="{% i18n logout-label %}"/>
|
|
</p>
|
|
{% else %}
|
|
<p class="widget">
|
|
<label for="username">{% i18n your-uname-prompt %}</label>
|
|
<input name="username" id="username" type="text" required/>
|
|
</p>
|
|
<p class="widget">
|
|
<label for="password">{% i18n old-pass-prompt %}</label>
|
|
<input name="password" id="password" type="password" required/>
|
|
</p>
|
|
<p class="widget">
|
|
<label for="submit">{% i18n login-prompt %}</label>
|
|
<input name="action" id="action" type="submit" class="action" value="{% i18n login-label %}"/>
|
|
</p>
|
|
{% endif %}
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|