e7fd91c152
Rebuilt forms for resetting the password, creating a fresh site and restoring a site from a backup, as well as adjusting the accompanying scripts that handle those processes.
19 lines
371 B
Twig
19 lines
371 B
Twig
{% extends "dash/_frame.twig" %}
|
|
|
|
{% block title %}
|
|
{{ title }}
|
|
{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/dash/start.css">
|
|
{% endblock %}
|
|
|
|
{% block mainContent %}
|
|
<section role="password-reset">
|
|
{% apply spaceless %}
|
|
{{ include("dash/forms/reset.twig") }}
|
|
{% endapply %}
|
|
|
|
</section>
|
|
{% endblock %}
|