You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.6 KiB
36 lines
1.6 KiB
4 years ago
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="edit-form">
|
||
4 years ago
|
<form class="pure-form pure-form-stacked" action="{{url_for('scrub_page')}}" method="POST">
|
||
4 years ago
|
<fieldset>
|
||
|
<div class="pure-control-group">
|
||
|
This will remove all version snapshots/data, but keep your list of URLs. <br/>
|
||
|
You may like to use the <strong>BACKUP</strong> link first.<br/>
|
||
|
</div>
|
||
4 years ago
|
<br/>
|
||
4 years ago
|
<div class="pure-control-group">
|
||
4 years ago
|
<label for="confirmtext">Confirmation text</label>
|
||
4 years ago
|
<input type="text" id="confirmtext" required="" name="confirmtext" value="" size="10"/>
|
||
4 years ago
|
<span class="pure-form-message-inline">Type in the word <strong>scrub</strong> to confirm that you understand!</span>
|
||
4 years ago
|
</div>
|
||
4 years ago
|
<br/>
|
||
4 years ago
|
<div class="pure-control-group">
|
||
4 years ago
|
<label for="confirmtext">Optional: Limit deletion of snapshots to snapshots <i>newer</i> than date/time</label>
|
||
4 years ago
|
<input type="datetime-local" id="limit_date" name="limit_date" />
|
||
|
<span class="pure-form-message-inline">dd/mm/yyyy hh:mm (24 hour format)</span>
|
||
4 years ago
|
</div>
|
||
4 years ago
|
<br/>
|
||
4 years ago
|
<div class="pure-control-group">
|
||
|
<button type="submit" class="pure-button pure-button-primary">Scrub!</button>
|
||
|
</div>
|
||
|
<br/>
|
||
|
<div class="pure-control-group">
|
||
4 years ago
|
<a href="{{url_for('index')}}" class="pure-button button-small button-cancel">Cancel</a>
|
||
4 years ago
|
</div>
|
||
|
</fieldset>
|
||
|
</form>
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|