PluginProbe
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor / 2.0.4
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor v2.0.4
4.0.2 4.0.1 4.0.0 3.16.6 3.16.5 3.16.4 3.16.3 3.16.2 3.16.1 3.16.0 3.15.9 3.9.9 3.9.5 3.9.6 3.9.7 3.9.8 1.1.7 1.1.8 1.1.9 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 All 340 releases
profile-builder / assets / misc / fallback-page.php

fallback-page.php in User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor 2.0.4, at assets/misc/fallback-page.php

30 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 //load WP if needed
4 $path_to_wp_install_dir = '';
5 include_once ( $path_to_wp_install_dir.'wp-load.php' );
6 */
7
8 $activation_key = ( isset( $_GET['activation_key'] ) ? urldecode( $_GET['activation_key'] ) : '' );
9 $site_name = ( isset( $_GET['site_name'] ) ? urldecode( $_GET['site_name'] ) : '' );
10 $site_url = ( isset( $_GET['site_url'] ) ? urldecode( $_GET['site_url'] ) : '' );
11 $message = ( isset( $_GET['message'] ) ? urldecode( $_GET['message'] ) : '' );
12 ?>
13
14 <html>
15 <head>
16 <style type="text/css">
17 body {font-family:Arial; padding: 5px; margin-top:100px; text-align: center;}
18 </style>
19
20 <title><?php echo htmlspecialchars( $site_name, ENT_QUOTES ); ?></title>
21 </head>
22
23 <body id="wppb_content">
24 <h1><?php echo htmlspecialchars( $site_name, ENT_QUOTES ); ?></h1>
25
26 <?php echo '<p>'. htmlspecialchars( strip_tags( $message ) ). '</p>'; ?>
27
28 <?php echo 'Click <a href="'. htmlspecialchars( $site_url, ENT_QUOTES ) .'">here</a> to return to the main site'; ?>
29 </body>
30 </html>