um_after_form
Hook type
Action
Description
Some actions after register form fields
Parameters
$args
(array) Register form shortcode arguments
Usage
add_action( 'um_after_form', 'function_name', 10, 1 );
Examples
<?php
add_action( 'um_after_form', 'my_after_form', 10, 1 );
function my_after_form( $args ) {
    // your code here
}
?>
Change Log
Since: 2.0
Source
um_after_form is located in templates/register.php::line 132