View file fs-phpfox340b2/upload/theme/install/default/template/key.html.php

File size: 2.32Kb
<?php 
/**
 * [PHPFOX_HEADER]
 * 
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author			Raymond Benc
 * @package 		Phpfox
 * @version 		$Id: key.html.php 2833 2011-08-15 19:56:43Z Raymond_Benc $
 */
 
defined('PHPFOX') or exit('NO DICE!'); 

?>
{if !$bHasCurl}
Your server is missing the CURL library for PHP. In order for our product to run it requires CURL.
{else}
{if isset($bFailed)}
<div class="error_message">
	Invalid Hostname
</div>
<div class="p_4">
	The domain, sub-domain or sub-folder you are attempting to install phpFox to is not licensed to run our product. Please visit our clients area for more information on how to
	setup your license. 
	<p>
		For more information regarding our license policy and on where you can run our product for development purposes please check here.
	</p>
</div>
{else}
{if isset($sError)}
<div class="error_message">
{if $sError == 'invalid_hostname'}
	Invalid Hostname
{elseif $sError == 'invalid_email'}
	Invalid Email
{elseif $sError == 'invalid_password'}
	Invalid Password
{/if}
</div>
{/if}
{$sCreateJs}
	<form method="post" action="{url link=''$sUrl'.key'}" id="js_form" onsubmit="{$sGetJsForm}">
		<div class="table_header">
			phpFox Client Details
		</div>
		<div class="table">
			<div class="table_left">
				Client Email:
			</div>
			<div class="table_right">
				<input type="text" name="val[email]" id="email" value="{value type='input' id='email'}" size="30" />
			</div>
		</div>
		<div class="table">
			<div class="table_left">
				Client Password:
			</div>
			<div class="table_right">
				<input type="password" name="val[password]" id="password" value="" size="30" />
			</div>
		</div>
		<div class="table_clear">
			<input type="submit" value="Submit" class="button" />
		</div>
	</form>
	<br />
	<div class="message">
		<strong>Notice:</strong>
		<div class="p_4">
			To install your branding removal you will need to enter your phpFox login details. This is the same login details used to log into our clients area at http://www.phpfox.com/.
			Alternatively, you can skip this step and continue with your install and optionally install your branding removal at a later time. 
			<div class="p_4 t_right">
				<form method="post" action="{url link=''$sUrl'.key'}">
					{token}
					<input type="submit" value="Skip This Step" class="button" name="skip" />
				</form>
			</div>
		</div>
	</div>
{/if}
{/if}