summaryrefslogtreecommitdiff
path: root/static/templates/login.html
blob: 5de9bc940c61fa4805489d62d16b79d7ad651a25 (plain)
{% extends "base.html" %}
{% block title %}{{ msg(key="loginTitle") }}{% endblock title %}
{% block content %}
<form method="post" action="/authorize?{{params}}">
	<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 %}