2021-04-24 05:54:56 +02:00
|
|
|
{% extends "dash/_frame.twig" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ title }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block stylesheets %}
|
|
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/dash.css?=adfa">
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block mainContent %}
|
|
|
|
<div id="dash-index">
|
|
|
|
<div id="dash-index-wrapper">
|
|
|
|
<div id="dash-init" class="dash-init">
|
2022-03-19 22:55:56 +01:00
|
|
|
<form id="init-form" method="POST">
|
2021-06-03 21:26:11 +02:00
|
|
|
<img id="the-logo" src="/assets/images/global/fipamo-logo.svg"/>
|
2021-05-21 23:07:25 +02:00
|
|
|
<input type="text" name="new_member_handle" id="new_member_handle" placeholder="handle"/>
|
|
|
|
<input type="text" name="new_member_email" id="new_member_email" placeholder="email"/>
|
|
|
|
<input type="text" name="new_member_pass" id="new_member_pass" placeholder="password"/>
|
|
|
|
<input type="text" name="new_member_pass2" id="new_member_pass2" placeholder="password confirm"/>
|
|
|
|
<input type="text" name="new_member_title" id="new_member_title" placeholder="title"/>
|
|
|
|
<button id="init-blog" data-action='blog-init' type='submit'>SET UP YOUR SITE</button>
|
2023-03-23 21:55:34 +01:00
|
|
|
<br/><br/>
|
2021-05-21 23:07:25 +02:00
|
|
|
<button class="init-option" id="init-switch-restore">RESTORE FROM BACKUP</button>
|
2021-04-24 05:54:56 +02:00
|
|
|
</form>
|
2023-03-23 21:55:34 +01:00
|
|
|
|
2021-04-24 05:54:56 +02:00
|
|
|
</div>
|
|
|
|
<div id="dash-restore" class="dash-restore">
|
2022-03-19 22:55:56 +01:00
|
|
|
<form id="init-restore" method="POST">
|
2021-06-03 21:26:11 +02:00
|
|
|
<img id="the-logo" src="/assets/images/global/fipamo-logo.svg"/>
|
2021-08-26 01:12:35 +02:00
|
|
|
<input type="text" name="restore_member_handle" id="restore_member_handle" placeholder="handle"/><input type="password" name="restore_member_pass" id="restore_member_pass" placeholder="password"/>
|
2021-05-21 23:07:25 +02:00
|
|
|
<div>
|
|
|
|
<label>Grab your backup zip</label>
|
|
|
|
<input id="backup-upload" type="file" name="backup-upload" placeholder="Backup Zip"/>
|
|
|
|
</div>
|
2023-03-23 21:55:34 +01:00
|
|
|
<br/><br/>
|
2021-04-24 05:54:56 +02:00
|
|
|
<button id="blog-restore" data-action='blog-restore' type='submit'>RESTORE</button>
|
2023-03-23 21:55:34 +01:00
|
|
|
<br/><br/>
|
2021-05-21 23:07:25 +02:00
|
|
|
<button class="init-option" id="init-switch-fresh">OR INSTALL FROM SCRATCH</button>
|
2021-04-24 05:54:56 +02:00
|
|
|
</form>
|
2023-03-23 21:55:34 +01:00
|
|
|
</div>
|
2021-04-24 05:54:56 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block javascripts %}
|
2023-03-23 21:55:34 +01:00
|
|
|
<script src="/assets/scripts/start.js?=sdfsdf" type="text/javascript"></script>
|
|
|
|
{% endblock %}
|