mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
35 lines
840 B
PHP
35 lines
840 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_profile_header_cover_area', $args ); ?>
|
|
|
|
<?php do_action('um_profile_header', $args ); ?>
|
|
|
|
<div class="um-profile-body">
|
|
|
|
<?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);
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|