1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<div class="swpm-pw-reset-widget-form"> <form id="swpm-pw-reset-form" name="swpm-reset-form" method="post" action=""> <div class="swpm-pw-reset-widget-inside"> <div class="swpm-pw-reset-email swpm-margin-top-10"> <label for="swpm_reset_email" class="swpm_label swpm-pw-reset-email-label"><?php echo SwpmUtils::_('電子郵件地址') ?></label> </div> <div class="swpm-pw-reset-email-input swpm-margin-top-10"> <input type="text" name="swpm_reset_email" class="swpm-text-field swpm-pw-reset-text" id="swpm_reset_email" value="" size="60" /> </div> <div class="swpm-before-login-submit-section swpm-margin-top-10"><?php echo apply_filters('swpm_before_pass_reset_form_submit_button', ''); ?></div> <div class="swpm-pw-reset-submit-button swpm-margin-top-10"> <input type="submit" name="swpm-reset" class="swpm-pw-reset-submit" value="<?php echo SwpmUtils::_('重設密碼'); ?>" /> </div> </div> </form> </div>
|