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.
25 lines
567 B
Twig
25 lines
567 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 %}
|
|
<article role="site-restore">
|
|
<section role="restore-fresh">
|
|
{% apply spaceless %}
|
|
{{ include("dash/forms/init-fresh.twig") }}
|
|
{% endapply %}
|
|
</section>
|
|
<section role="restore-backup">
|
|
{% apply spaceless %}
|
|
{{ include("dash/forms/init-backup.twig") }}
|
|
{% endapply %}
|
|
</section>
|
|
</article>
|
|
{% endblock %}
|