{% extends "./base.html" %} {% import 'macros.html' as ui %} {% block content %}

Sign in

Enter your credentials to manage this server.

{{ ui.field('username', label='Username', value=form.username if form else '', error=errors.username if errors else '') }} {{ ui.field('password', type='password', label='Password', error=errors.password if errors else '') }} {{ ui.button('Sign in') }}

New here? Create an account

{% endblock %}