{% extends "base.html" %} {% block content %}
First Run

{{ first_run_form.csrf_token }}
{{ first_run_form.username.label }} {{ first_run_form.username(class_='form-control', placeholder=first_run_form.username.label.text) }}
{{ first_run_form.email.label }} {{ first_run_form.email(class_='form-control', placeholder=first_run_form.email.label.text) }}
{{ first_run_form.password.label }} {{ first_run_form.password(type='password', class_='form-control', placeholder=first_run_form.password.label.text) }}
{{ first_run_form.confirm_password.label }} {{ first_run_form.confirm_password(type='password', class_='form-control', placeholder=first_run_form.confirm_password.label.text) }}

{{ first_run_form.comicvine_api_key.label }} {{ first_run_form.comicvine_api_key(class_='form-control', placeholder=first_run_form.comicvine_api_key.label.text) }}

{{ first_run_form.open_registration }} {{ first_run_form.open_registration.label }}
{{ first_run_form.logging_level.label }} {{ first_run_form.logging_level(class_='form-control') }}

{{ first_run_form.first_run_button(class_='btn btn-success') }}
{% endblock %}