diff options
Diffstat (limited to 'static/templates/login.html')
| -rw-r--r-- | static/templates/login.html | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/static/templates/login.html b/static/templates/login.html index 325dc14..18ec017 100644 --- a/static/templates/login.html +++ b/static/templates/login.html @@ -1,14 +1,14 @@ -{% extends "base.html" %} -{% block title %}{{ msg(key="loginTitle") }}{% endblock title %} -{% block content %} -<form method="post" action="/authorize?{{params}}"> - {% if errorMessage %} - <p>{{ msg(key=errorMessage) }}</p> - {% endif %} - <label for="username">{{ msg(key="usernameLabel") }}</label> - <input id="username" type="text" name="username" tabindex="0" placeholder="{{ msg(key="usernamePlaceholder") }}" autofocus /> - <label for="password">{{ msg(key="passwordLabel") }}</label> - <input id="password" type="password" name="password" tabindex="0" placeholder="{{ msg(key="passwordPlaceholder") }}" /> - <input type="submit" tabindex="0" name="login" value="{{ msg(key="loginSubmitButton") }}" /> -</form> +{% extends "base.html" %}
+{% block title %}{{ msg(key="loginTitle") }}{% endblock title %}
+{% block content %}
+<form method="post" action="/authorize?{{params}}">
+ {% if errorMessage %}
+ <p>{{ msg(key=errorMessage) }}</p>
+ {% endif %}
+ <label for="username">{{ msg(key="usernameLabel") }}</label>
+ <input id="username" type="text" name="username" tabindex="0" placeholder="{{ msg(key="usernamePlaceholder") }}" autofocus />
+ <label for="password">{{ msg(key="passwordLabel") }}</label>
+ <input id="password" type="password" name="password" tabindex="0" placeholder="{{ msg(key="passwordPlaceholder") }}" />
+ <input type="submit" tabindex="0" name="login" value="{{ msg(key="loginSubmitButton") }}" />
+</form>
{% endblock content %}
\ No newline at end of file |
