1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-16 18:42:01 +02:00

Minor GUI improvements to signup page

This commit is contained in:
Cameron 2013-02-07 09:49:48 -08:00
parent ed56da85c3
commit cc8eefd5ff
3 changed files with 8 additions and 5 deletions

View File

@ -318,6 +318,11 @@ class signup_shortcodes extends e_shortcode
$done_heading = FALSE;
if(!count($extList))
{
continue;
}
foreach($extList as $ext)
{
if($ext['user_extended_struct_required'] == 1 || $ext['user_extended_struct_required'] == 2)

View File

@ -236,7 +236,7 @@ if(!defined($SIGNUP_BODY))
{SIGNUP_IMAGECODE}
<tr style='vertical-align:top'>
<td class='forumheader' colspan='2' style='text-align:center'>
<input class='button btn' type='submit' name='register' value=\"".LAN_SIGNUP_79."\" />
<input class='button btn btn-success' type='submit' name='register' value=\"".LAN_SIGNUP_79."\" />
<br />
</td>
</tr>

View File

@ -177,7 +177,7 @@ if((e_QUERY == 'resend') && !USER && ($pref['user_reg_veri'] == 1))
$text .="<tr style='vertical-align:top'>
<td colspan='2' style='text-align:center' class='forumheader'>";
$text .= "<input class='button' type='submit' name='submit_resend' value=\"".LAN_SIGNUP_47."\" />"; // resend activation email.
$text .= "<input class='btn button' type='submit' name='submit_resend' value=\"".LAN_SIGNUP_47."\" />"; // resend activation email.
$text .= "</td>
</tr>
</table>
@ -287,9 +287,7 @@ if(getperms('0')) // allow main admin to view signup page for design/testing.
{
//$mes = e107::getMessage();
//$mes->debug("You are currently logged in.");
$SIGNUP_BEGIN = "<div class='s-message'>
<div class='error'> You are currently logged in.
</div></div>". $SIGNUP_BEGIN;
$SIGNUP_BEGIN = "<div class='alert alert-block alert-error'> You are currently logged in.</div>". $SIGNUP_BEGIN;
}