mirror of
https://github.com/phpbb/phpbb.git
synced 2025-10-24 21:26:24 +02:00
52 lines
1.6 KiB
HTML
52 lines
1.6 KiB
HTML
<!-- INCLUDE ucp_header.html -->
|
|
|
|
<form id="ucp" method="post" action="{S_UCP_ACTION}"{S_FORM_ENCTYPE}>
|
|
|
|
<h2>{L_UCP_NOTIFICATION_OPTIONS}</h2>
|
|
<div class="panel">
|
|
<div class="inner">
|
|
|
|
<p>{L_UCP_NOTIFICATION_OPTIONS_EXPLAIN}</p>
|
|
|
|
<ul class="topiclist">
|
|
<li class="header">
|
|
<dl>
|
|
<dt>{L_NOTIFICATION_TYPE}</dt>
|
|
<!-- BEGIN notification_methods -->
|
|
<dd class="mark">{notification_methods.NAME}</dd>
|
|
<!-- END notification_methods -->
|
|
<dd class="mark">{L_NOTIFICATIONS}</dd>
|
|
</dl>
|
|
</li>
|
|
</ul>
|
|
<ul class="topiclist cplist">
|
|
|
|
<!-- BEGIN notification_types -->
|
|
<li class="row<!-- IF notification_types.S_ROW_COUNT is odd --> bg1<!-- ELSE --> bg2<!-- ENDIF -->">
|
|
<dl>
|
|
<dt>
|
|
{notification_types.NAME}
|
|
</dt>
|
|
<!-- BEGIN notification_methods -->
|
|
<dd class="mark"><input type="checkbox" name="{notification_types.TYPE}_{notification_methods.METHOD}"<!-- IF notification_methods.SUBSCRIBED --> checked="checked"<!-- ENDIF --> /> <dfn>{notification_methods.NAME}</dfn></dd>
|
|
<!-- END notification_methods -->
|
|
<dd class="mark"><input type="checkbox" name="{notification_types.TYPE}_notification"<!-- IF notification_types.SUBSCRIBED --> checked="checked"<!-- ENDIF --> /> <dfn>{notification_methods.NAME}</dfn></dd>
|
|
</dl>
|
|
</li>
|
|
<!-- END notification_types -->
|
|
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<fieldset class="submit-buttons">
|
|
{S_HIDDEN_FIELDS}<input type="reset" value="{L_RESET}" name="reset" class="button2" />
|
|
<input type="submit" name="submit" value="{L_SUBMIT}" class="button1" />
|
|
{S_FORM_TOKEN}
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
<!-- INCLUDE ucp_footer.html -->
|