{% set title = "Create an Account" %} {% extends "__base__.html" %} {% block content %}

Create an Account

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

Already have an account? Sign In

{% endblock %}