# profile-builder/2.0.2/assets/misc/fallback-page.php

User Profile Builder – Beautiful User Registration Forms, User Profiles &amp; User Role Editor, version 2.0.2. 30 lines.

- Page: https://pluginprobe.com/plugins/profile-builder/2.0.2/code/assets/misc/fallback-page.php
- Raw: https://pluginprobe.com/plugins/profile-builder/2.0.2/raw/assets/misc/fallback-page.php
- Modified: 2014-10-21T13:22:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/profile-builder/2.0.2/code/assets/misc/fallback-page.php#L10-L20`.

```php
<?php
/*
//load WP if needed
$path_to_wp_install_dir = '';
include_once ( $path_to_wp_install_dir.'wp-load.php' );
*/

$activation_key = ( isset( $_GET['activation_key'] ) ? urldecode( $_GET['activation_key'] ) : '' );
$site_name = ( isset( $_GET['site_name'] ) ? urldecode( $_GET['site_name'] ) : '' );
$site_url = ( isset( $_GET['site_url'] ) ? urldecode( $_GET['site_url'] ) : '' );
$message = ( isset( $_GET['message'] ) ? urldecode( $_GET['message'] ) : '' );
?> 	
			
<html>
	<head>
		<style type="text/css">
			body {font-family:Arial; padding: 5px; margin-top:100px; text-align: center;}
		</style>
		
		<title><?php echo $site_name; ?></title>
	</head>
	
	<body id="wppb_content">
		<h1><?php echo $site_name; ?></h1>
		
		<?php echo $message; ?>
		
		<?php echo 'Click <a href="'.$site_url.'">here</a> to return to the main site'; ?>
	</body>
</html>
```
