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

Set up your ttun server

This will be the first account, with full access to manage this server.

{% else %}

Create your account

This account will be able to sign in and manage this server.

{% endif %}
{{ ui.field('email', type='email', label='Email', value=form.email if form else '', error=errors.email if errors else '') }} {{ ui.field('password', type='password', label='Password', error=errors.password if errors else '') }} {{ ui.field('verify_password', type='password', label='Confirm password', error=errors.verify_password if errors else '') }} {{ ui.button('Create account') }}

Already have an account? Sign in

{% endblock %}