mirror of
https://github.com/e107inc/e107.git
synced 2025-01-18 05:09:05 +01:00
271 lines
7.7 KiB
PHP
Executable File
271 lines
7.7 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2009 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
*
|
|
*
|
|
* $Source: /cvs_backup/e107_0.8/e107_themes/templates/signup_template.php,v $
|
|
* $Revision: 12837 $
|
|
* $Date: 2012-06-19 11:08:41 +0200 (di, 19 jun 2012) $
|
|
* $Author: e107coders $
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
if (!defined("USER_WIDTH")){ define("USER_WIDTH", "width:100%"); }
|
|
|
|
define("REQUIRED_FIELD_MARKER", "<span class='required'> *</span>");
|
|
|
|
$sc_style['SIGNUP_DISPLAYNAME']['pre'] = "
|
|
<tr>
|
|
<td class='forumheader3' style='width:30%;white-space:nowrap' >"
|
|
.LAN_SIGNUP_89."<span class='required'> *</span><br /><span class='smalltext'>".LAN_SIGNUP_90."</span>
|
|
</td>
|
|
<td class='forumheader3' style='width:70%'>";
|
|
$sc_style['SIGNUP_DISPLAYNAME']['post'] = "
|
|
</td>
|
|
</tr>";
|
|
|
|
$sc_style['SIGNUP_REALNAME']['pre'] = "
|
|
<tr>
|
|
<td class='forumheader3' style='width:30%;white-space:nowrap'>"
|
|
.LAN_SIGNUP_91."".req($pref['signup_option_realname'])."
|
|
</td>
|
|
<td class='forumheader3' style='width:70%' >";
|
|
$sc_style['SIGNUP_REALNAME']['post'] = "
|
|
</td>
|
|
</tr>";
|
|
|
|
$sc_style['SIGNUP_IS_MANDATORY']['pre'] = "<span class='required'>";
|
|
$sc_style['SIGNUP_IS_MANDATORY']['post'] = "</span>";
|
|
|
|
if(!defined($USERCLASS_SUBSCRIBE_START))
|
|
{
|
|
$USERCLASS_SUBSCRIBE_START = "
|
|
<tr>
|
|
<td class='forumheader3' style='width:30%;vertical-align:top'>"
|
|
.LAN_USER_76." ".req($pref['signup_option_class'])."<br />
|
|
<span class='smalltext'>".LAN_USER_73."</span>
|
|
</td>
|
|
<td class='forumheader3' style='width:70%;margin-left:0px'>
|
|
<table style='".USER_WIDTH."'>";
|
|
}
|
|
/*
|
|
if(!defined($USERCLASS_SUBSCRIBE_ROW))
|
|
{
|
|
$USERCLASS_SUBSCRIBE_ROW = "
|
|
<tr>
|
|
<td class='defaulttext' style='width:10%;vertical-align:top'>
|
|
<div {USERCLASS_INDENT}>
|
|
<input type='checkbox' name='class[]' value='{USERCLASS_ID}' {USERCLASS_CHECKED} />
|
|
</div>
|
|
</td>
|
|
<td class='defaulttext' style='text-align:left;margin-left:0px;width:90%;padding-top:3px;vertical-align:top'>
|
|
{USERCLASS_NAME}<br />
|
|
<span class='smalltext'>{USERCLASS_DESCRIPTION}</span>
|
|
</td>
|
|
</tr>";
|
|
}*/
|
|
|
|
if(!defined($USERCLASS_SUBSCRIBE_END))
|
|
{
|
|
$USERCLASS_SUBSCRIBE_END = "
|
|
</table>
|
|
</td>
|
|
</tr>";
|
|
}
|
|
|
|
if(!defined($SIGNUP_PASSWORD_LEN))
|
|
{
|
|
$SIGNUP_PASSWORD_LEN = "
|
|
<span class='smalltext'> (".LAN_SIGNUP_1." {$pref['signup_pass_len']} ".LAN_SIGNUP_2.")</span>";
|
|
}
|
|
|
|
if(!defined($SIGNUP_EXTENDED_USER_FIELDS))
|
|
{
|
|
$SIGNUP_EXTENDED_USER_FIELDS = "
|
|
<tr>
|
|
<td style='width:40%' class='forumheader3'>
|
|
{EXTENDED_USER_FIELD_TEXT}
|
|
{EXTENDED_USER_FIELD_REQUIRED}
|
|
</td>
|
|
<td style='width:60%' class='forumheader3'>
|
|
{EXTENDED_USER_FIELD_EDIT}
|
|
</td>
|
|
</tr>";
|
|
}
|
|
|
|
if(!defined($EXTENDED_USER_FIELD_REQUIRED))
|
|
{
|
|
$EXTENDED_USER_FIELD_REQUIRED = "<span class='required'> *</span>";
|
|
}
|
|
|
|
/* // DEPRECATED
|
|
$SIGNUP_SIGNATURE_START = "
|
|
<tr>
|
|
<td class='forumheader3' style='width:30%;white-space:nowrap;vertical-align:top' >".LAN_SIGNUP_93." ".req($pref['signup_option_signature'])."</td>
|
|
<td class='forumheader3' style='width:70%' >
|
|
<textarea class='tbox' style='width:99%' name='signature' cols='10' rows='4' onselect='storeCaret(this);' onclick='storeCaret(this);' onkeyup='storeCaret(this);'>";
|
|
|
|
$SIGNUP_SIGNATURE_END = "
|
|
</textarea><br />
|
|
<div style='".USER_WIDTH."'>{REN_HELP}</div>
|
|
</td></tr>
|
|
";
|
|
*/
|
|
|
|
$sc_style['SIGNUP_SIGNATURE']['pre'] = "
|
|
<tr>
|
|
<td class='forumheader3' style='width:30%;white-space:nowrap;vertical-align:top' >".LAN_SIGNUP_93." ".req($pref['signup_option_signature'])."</td>
|
|
<td class='forumheader3' style='width:70%'>";
|
|
|
|
$sc_style['SIGNUP_SIGNATURE']['post'] = "
|
|
</td>
|
|
</tr>";
|
|
|
|
$sc_style['SIGNUP_IMAGES']['pre'] = "
|
|
<tr>
|
|
<td class='forumheader3' style='width:30%; vertical-align:top;white-space:nowrap' >".LAN_SIGNUP_94.req($pref['signup_option_image'])."</td>
|
|
<td class='forumheader3' style='width:70%;vertical-align:top'>";
|
|
$sc_style['SIGNUP_IMAGES']['post'] = "
|
|
</td>
|
|
</tr>";
|
|
|
|
$sc_style['SIGNUP_IMAGECODE']['pre'] = "
|
|
<tr>
|
|
<td class='forumheader3' style='width:30%'>".e107::getSecureImg()->renderLabel().req(2)."</td>
|
|
<td class='forumheader3' style='width:70%'>";
|
|
$sc_style['SIGNUP_IMAGECODE']['post'] = "
|
|
</td>
|
|
</tr>";
|
|
|
|
$sc_style['SIGNUP_LOGINNAME']['pre'] = "
|
|
<tr>
|
|
<td class='forumheader3' style='width:30%'>".LAN_SIGNUP_81.req(2)."</td>
|
|
<td class='forumheader3' style='width:70%'>";
|
|
$sc_style['SIGNUP_LOGINNAME']['post'] = "
|
|
</td>
|
|
</tr>";
|
|
|
|
$sc_style['SIGNUP_HIDE_EMAIL']['pre'] = "
|
|
<tr>
|
|
<td class='forumheader3' style='width:30%;white-space:nowrap'>".LAN_USER_83."</td>
|
|
<td class='forumheader3' style='width:70%'>";
|
|
$sc_style['SIGNUP_HIDE_EMAIL']['post'] = "
|
|
</td>
|
|
</tr>";
|
|
|
|
$sc_style['SIGNUP_EMAIL_CONFIRM']['pre'] = "
|
|
<tr>
|
|
<td class='forumheader3' style='width:30%;white-space:nowrap'>".LAN_SIGNUP_39."</td>
|
|
<td class='forumheader3' style='width:70%'>";
|
|
$sc_style['SIGNUP_EMAIL_CONFIRM']['post'] = "
|
|
</td>
|
|
</tr>";
|
|
|
|
$sc_style['SIGNUP_XUP']['pre'] = "<div class='center' style='display:block;padding:10px'>";
|
|
$sc_style['SIGNUP_XUP']['post'] = "<h2 class='signup-divider'><span>OR</span></h2></div>";
|
|
|
|
$sc_style['SIGNUP_PASSWORD1']['pre'] = "<tr>
|
|
<td class='forumheader3' style='width:30%;white-space:nowrap'>".LAN_SIGNUP_83."<span class='required'> *</span></td>
|
|
<td class='forumheader3' style='width:70%'>";
|
|
$sc_style['SIGNUP_PASSWORD1']['post'] = "</td>
|
|
</tr>";
|
|
|
|
$sc_style['SIGNUP_PASSWORD2']['pre'] = "<tr>
|
|
<td class='forumheader3' style='width:30%;white-space:nowrap'>".LAN_SIGNUP_84."<span class='required'> *</span></td>
|
|
<td class='forumheader3' style='width:70%'>";
|
|
$sc_style['SIGNUP_PASSWORD2']['post'] = "</td>
|
|
</tr>";
|
|
|
|
$sc_style['SIGNUP_USERCLASS_SUBSCRIBE']['pre'] = "<tr>
|
|
<td class='forumheader3' style='width:30%;white-space:nowrap'>".LAN_SIGNUP_113."</td>
|
|
<td class='forumheader3' style='width:70%'>";
|
|
$sc_style['SIGNUP_USERCLASS_SUBSCRIBE']['post'] = "</td>
|
|
</tr>";
|
|
|
|
|
|
if(!defined($COPPA_TEMPLATE))
|
|
{
|
|
$COPPA_TEMPLATE =
|
|
LAN_SIGNUP_77." <a href='http://www.ftc.gov/privacy/coppafaqs.shtm'>".LAN_SIGNUP_14."</a>. "
|
|
.LAN_SIGNUP_15." ".$tp->emailObfuscate(SITEADMINEMAIL,LAN_SIGNUP_14)." ".LAN_SIGNUP_16."<br />
|
|
<br />
|
|
<div style='text-align:center'><b>".LAN_SIGNUP_17."</b>
|
|
{SIGNUP_COPPA_FORM}
|
|
</div>";
|
|
}
|
|
|
|
if(!defined($COPPA_FAIL))
|
|
{
|
|
$COPPA_FAIL = "<div style='text-align:center'>".LAN_SIGNUP_9."</div>";
|
|
}
|
|
|
|
//if(!defined($SIGNUP_TEXT))
|
|
{
|
|
//$SIGNUP_TEXT = $tp->parseTemplate("{SIGNUP_SIGNUP_TEXT}"); // .
|
|
//LAN_SIGNUP_80." <b>".LAN_SIGNUP_29."</b><br /><br />".
|
|
//LAN_SIGNUP_30."<br />".
|
|
//LAN_SIGNUP_85;
|
|
}
|
|
|
|
if(!defined($SIGNUP_BEGIN))
|
|
{
|
|
$SIGNUP_BEGIN = "
|
|
{SIGNUP_FORM_OPEN} {SIGNUP_ADMINOPTIONS} {SIGNUP_SIGNUP_TEXT}";
|
|
}
|
|
|
|
if(!defined($SIGNUP_BODY))
|
|
{
|
|
$SIGNUP_BODY = "
|
|
{SIGNUP_XUP}
|
|
<div id='default'>
|
|
{SIGNUP_XUP_ACTION}
|
|
<table class='table fborder' style='".USER_WIDTH."'>
|
|
{SIGNUP_DISPLAYNAME}
|
|
{SIGNUP_LOGINNAME}
|
|
{SIGNUP_REALNAME}
|
|
<tr>
|
|
<td class='forumheader3' style='width:30%;white-space:nowrap'>".LAN_USER_60."{SIGNUP_IS_MANDATORY=email}</td>
|
|
<td class='forumheader3' style='width:70%'>
|
|
{SIGNUP_EMAIL}
|
|
</td>
|
|
</tr>
|
|
{SIGNUP_EMAIL_CONFIRM}
|
|
{SIGNUP_PASSWORD1}
|
|
{SIGNUP_PASSWORD2}
|
|
{SIGNUP_HIDE_EMAIL}
|
|
{SIGNUP_USERCLASS_SUBSCRIBE}
|
|
{SIGNUP_EXTENDED_USER_FIELDS}
|
|
{SIGNUP_SIGNATURE}
|
|
{SIGNUP_IMAGES}
|
|
{SIGNUP_IMAGECODE}
|
|
<tr style='vertical-align:top'>
|
|
<td class='forumheader' colspan='2' style='text-align:center'>
|
|
<input class='button btn btn-success' type='submit' name='register' value=\"".LAN_SIGNUP_79."\" />
|
|
<br />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
{SIGNUP_FORM_CLOSE}";
|
|
}
|
|
|
|
if(!defined($SIGNUP_EXTENDED_CAT))
|
|
{
|
|
$SIGNUP_EXTENDED_CAT = "
|
|
<tr>
|
|
<td colspan='2' class='forumheader'>
|
|
{EXTENDED_CAT_TEXT}
|
|
</td>
|
|
</tr>";
|
|
}
|
|
|
|
if(!defined($SIGNUP_END))
|
|
{
|
|
$SIGNUP_END = '';
|
|
}
|
|
?>
|