Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Custom LoginOut

// Add Shortcode
function custom_loginout( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'url' => 'http://confidea-wp.dev/wp-login.php',
		), $atts )
	);
}
add_shortcode( 'custom_loginout', 'custom_loginout' );