Files
ultimatemember/templates/login.php
T

27 lines
500 B
PHP
Raw Normal View History

2015-05-02 02:49:05 +03:00
<div class="um <?php echo $this->get_class( $mode ); ?> um-<?php echo $form_id; ?>">
2014-12-15 22:38:07 +02:00
<div class="um-form">
<form method="post" action="" autocomplete="off">
<?php
do_action("um_before_form", $args);
2015-03-17 16:03:32 +02:00
do_action("um_before_{$mode}_fields", $args);
2014-12-15 22:38:07 +02:00
2015-03-17 16:03:32 +02:00
do_action("um_main_{$mode}_fields", $args);
2014-12-15 22:38:07 +02:00
do_action("um_after_form_fields", $args);
2015-03-17 16:03:32 +02:00
do_action("um_after_{$mode}_fields", $args);
2014-12-15 22:38:07 +02:00
do_action("um_after_form", $args);
?>
</form>
</div>
</div>