blob: fd3d136a13917f5bf3dac737b0bfe74a03f711f8 (
plain)
{% extends "base.html" %}
{% block title %}Log In{% endblock title %}
{% block content %}
<form method="post" action="{{ baseUrl() }}/authenticate">
<label for="username">Username</label>
<input id="username" type="text" name="username" tabindex="0" placeholder="Enter your username" autofocus autocomplete="off" />
<label for="password">Password</label>
<input id="password" type="password" name="password" tabindex="0" placeholder="Enter your password" autofocus autocomplete="off" />
<input type="submit" tabindex="0" name="login" value="Log In" />
</form>
{% endblock content %}
|