1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-25 11:01:48 +02:00

[ticket/15289] Add acp module

PHPBB3-15289
This commit is contained in:
Rubén Calvo
2017-07-25 10:29:13 +02:00
parent 944f9bf54e
commit ba9f082bf4
5 changed files with 225 additions and 1 deletions

View File

@@ -0,0 +1,36 @@
<!-- INCLUDE overall_header.html -->
<a id="maincontent"></a>
<h1>{L_TITLE}</h1>
<p>{L_TITLE_EXPLAIN}</p>
<form id="acp_storage" method="post" action="{U_ACTION}">
<!-- BEGIN storage -->
<fieldset>
<legend>{storage.LEGEND}</legend>
<dl>
<dt><label for="{storage.key}">{storage.TITLE}{L_COLON}</label><!-- IF storage.TITLE_EXPLAIN --><br /><span>{storage.TITLE_EXPLAIN}</span><!-- ENDIF --></dt>
<dd><select id="{storage.key}" name="{storage.key}[provider]" data-togglable-settings="true">{storage.OPTIONS}</select></dd>
</dl>
</fieldset>
<!-- BEGIN adapter -->
<fieldset id="avatar_{avatar_backend.IDENTIFIER}_settings">
<legend>{adapter.NAME}</legend>
{adapter.SETTINGS}
</fieldset>
<!-- END adapter -->
<!-- END storage -->
<fieldset class="submit-buttons">
<legend>{L_SUBMIT}</legend>
<input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />&nbsp;
<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
{S_FORM_TOKEN}
</fieldset>
</form>
<!-- INCLUDE overall_footer.html -->