mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
32 lines
892 B
HTML
32 lines
892 B
HTML
{% include 'overall_header.html' %}
|
|
|
|
<a id="maincontent"></a>
|
|
|
|
<h1>{{ lang('STORAGE_TITLE') }}</h1>
|
|
|
|
<p>{{ lang('STORAGE_TITLE_EXPLAIN') }}</p>
|
|
|
|
<form id="acp_storage_continue" method="post" action="{{ U_ACTION }}">
|
|
<fieldset>
|
|
<legend>{{ lang('SUBMIT') }}</legend>
|
|
|
|
{% if CONTINUE_PROGRESS %}
|
|
<div class="centered-text">
|
|
<br>
|
|
<progress
|
|
value="{{ CONTINUE_PROGRESS.VALUE }}"
|
|
max="{{ CONTINUE_PROGRESS.TOTAL }}"
|
|
style="height: 2em; width: 20em;"></progress><br>
|
|
{{ CONTINUE_PROGRESS.PERCENTAGE|number_format(2) ~ ' %' }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<p class="submit-buttons">
|
|
<input class="button1" type="submit" id="continue" name="continue" value="{{ lang('SUBMIT') }}" />
|
|
<input class="button2" type="submit" id="cancel" name="cancel" value="{{ lang('CANCEL') }}" />
|
|
</p>
|
|
{{ S_FORM_TOKEN }}
|
|
</fieldset>
|
|
</form>
|
|
|
|
{% include 'overall_footer.html' %}
|