Guest User

Untitled

a guest
Jul 18th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <?php
  2. $show_password_fields = apply_filters( 'show_password_fields', true, $profileuser );
  3. if ( $show_password_fields ) :
  4. ?>
  5. <tr id="password">
  6. <th><label for="pass1"><?php _e( 'Nieuw wachtwoord', 'theme-my-login' ); ?></label></th>
  7. <td>
  8. <table>
  9. <tr><td><input type="password" name="pass1" id="pass1" size="16" value="" autocomplete="off" /></td><td> <span class="description"><?php _e( 'Wil je een nieuw wachtwoord? Vul dan een nieuwe in, anders laat hem leeg.', 'theme-my-login' ); ?></span></td></tr>
  10. <tr><td><input type="password" name="pass2" id="pass2" size="16" value="" autocomplete="off" /></td><td> <span class="description"><?php _e( 'Bevestig je nieuwe wachtwoord.', 'theme-my-login' ); ?></span></td></tr>
  11. <tr><td colspan="2"><div id="pass-strength-result" style="width:93%"><?php _e( 'Paswoord sterkte', 'theme-my-login' ); ?></div>
  12. <p class="description indicator-hint"><?php _e( 'Tip: Je paswoord moet in ieder geval zeven characters bevatten ! " ? $ % ^ & ).', 'theme-my-login' ); ?></p></td></tr>
  13. </table>
  14. </td>
  15. </tr>
  16. <?php endif; ?>
Add Comment
Please, Sign In to add comment