{% extends "base.html" %} {% from "macros/input.html" import text %} {% block content %}

Login

Welcome back!

{{ text(id="login-username", name="username", required=True) }} {{ text(id="login-password", name="password", type="password", required=True) }}

Register

Don't have an account?

{{ text(id="register-username", name="username", required=True) }} {{ text(id="register-password", name="password", type="password", required=True, minlength=8) }} {{ text(id="register-confirm", name="confirm", type="password", required=True, minlength=8) }}
{% endblock %}