diff options
Diffstat (limited to 'phpBB/styles/prosilver')
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_notifications.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_notifications.html b/phpBB/styles/prosilver/template/ucp_notifications.html new file mode 100644 index 0000000000..776e565dd0 --- /dev/null +++ b/phpBB/styles/prosilver/template/ucp_notifications.html @@ -0,0 +1,48 @@ +<!-- INCLUDE ucp_header.html --> + +<form id="ucp" method="post" action="{S_UCP_ACTION}"{S_FORM_ENCTYPE}> + +<div class="panel"> + <div class="inner"> + <ul class="topiclist"> + <li class="header"> + <dl class="icon"> + <dt>{L_NOTIFICATION_TYPE}</dt> + <dd class="topics">{L_NOTIFICATIONS}</dd> + <!-- BEGIN notification_methods --> + <dd class="topics">{notification_methods.NAME}</dd> + <!-- END notification_methods --> + </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 class="icon"> + <dt> + {notification_types.NAME}<br /> + {notification_types.DESC} + </dt> + <dd class="topics"><input type="checkbox" name="{notification_types.TYPE}_notification" /> <dfn>{notification_methods.NAME}</dfn></dd> + <!-- BEGIN notification_methods --> + <dd class="topics"><input type="checkbox" name="{notification_types.TYPE}_{notification_methods.METHOD}" /> <dfn>{notification_methods.NAME}</dfn></dd> + <!-- END notification_methods --> + </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 --> |