mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
27 lines
651 B
PHP
27 lines
651 B
PHP
<div class="um <?php echo $this->get_class( $mode ); ?> um-<?php echo $form_id; ?>" data-error_required="This field is required" data-password_not_match="Passwords do not match" data-password_not_long="Password must be 8 characters at least">
|
|
|
|
<div class="um-form">
|
|
|
|
<form method="post" action="">
|
|
|
|
<?php
|
|
|
|
do_action("um_before_form", $args);
|
|
|
|
do_action("um_before_{$template}_fields", $args);
|
|
|
|
do_action("um_main_{$template}_fields", $args);
|
|
|
|
do_action("um_after_form_fields", $args);
|
|
|
|
do_action("um_after_{$template}_fields", $args);
|
|
|
|
do_action("um_after_form", $args);
|
|
|
|
?>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|