improve the register text until the new register page is finished
This commit is contained in:
parent
c5c5e8b4e0
commit
eda7c24c4e
@ -135,12 +135,19 @@ function register_post(&$a) {
|
||||
|
||||
function register_content(&$a) {
|
||||
|
||||
$registration_is = '';
|
||||
$other_sites = '';
|
||||
|
||||
if(get_config('system','register_policy') == REGISTER_CLOSED) {
|
||||
require_once('mod/pubsites.php');
|
||||
return pubsites_content($a);
|
||||
}
|
||||
|
||||
if(get_config('system','register_policy') == REGISTER_APPROVE) {
|
||||
$registration_is = t('Registration on this site/hub is by approval only.');
|
||||
$other_sites = t('<a href="pubsites">Register at another affiliated site/hub</a>');
|
||||
}
|
||||
|
||||
$max_dailies = intval(get_config('system','max_daily_registrations'));
|
||||
if($max_dailies) {
|
||||
$r = q("select count(account_id) as total from account where account_created > UTC_TIMESTAMP() - INTERVAL 1 day");
|
||||
@ -175,10 +182,14 @@ function register_content(&$a) {
|
||||
$invite_code = ((x($_REQUEST,'invite_code')) ? strip_tags(trim($_REQUEST['invite_code'])) : "" );
|
||||
|
||||
|
||||
|
||||
|
||||
$o = replace_macros(get_markup_template('register.tpl'), array(
|
||||
|
||||
'$title' => t('Registration'),
|
||||
'$reg_is' => $registration_is,
|
||||
'$registertext' => get_config('system','register_text'),
|
||||
'$other_sites' => $other_sites,
|
||||
'$invitations' => get_config('system','invitation_only'),
|
||||
'$invite_desc' => t('Membership on this site is by invitation only.'),
|
||||
'$label_invite' => t('Please enter your invitation code'),
|
||||
|
@ -10,6 +10,11 @@ h2 {
|
||||
margin-top: 5%;
|
||||
}
|
||||
|
||||
#register-desc, #register-text, #register-sites {
|
||||
font-weight: bold;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.register-label {
|
||||
float: left;
|
||||
width: 275px;
|
||||
|
@ -2,8 +2,14 @@
|
||||
|
||||
<form action="register" method="post" id="register-form">
|
||||
|
||||
{{if $registertext}}
|
||||
<div id="register-desc" class="descriptive-paragraph">{{$registertext}}</div>
|
||||
|
||||
|
||||
{{if $reg_is}}
|
||||
<div id="register-desc" class="descriptive-paragraph">{{$reg_is}}
|
||||
{{/if}}
|
||||
{{if $registertext}}<div id="register-text" class="descriptive-paragraph">{{$registertext}}</div>
|
||||
{{/if}}
|
||||
{{if $other_sites}}<div id="register-sites" class="descriptive-paragraph">{{$other_sites}}</div>
|
||||
{{/if}}
|
||||
|
||||
{{if $invitations}}
|
||||
|
Reference in New Issue
Block a user