{% set title = "Sign In" %} {% extends "__base__.html" %} {% block content %}

Sign In

{%- if error %} {% import "components/alert.html" as alerts %} {{ alerts.warning("Error", error) }} {% endif -%}
{% import "components/forms.html" as forms %} {{ forms.input({ "id": "username", "label": "Username", "placeholder": "Your Username", "autocomplete": "username" }) }} {{ forms.input({ "id": "password", "label": "Password", "type": "password", "placeholder": "Your Password", "autocomplete": "current-password" }) }} {{ forms.submit("Sign In") }}

Don't have an account? Create an Account

{% endblock %}