diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-30 19:20:19 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-30 19:20:19 +0000 |
commit | 6eeea6fbcdd9a8a40bbcb94c767572e12a845551 (patch) | |
tree | e0e26e2473cb79722b62de0a5c4dd014addf51ac /templates/show_user_registration.inc.php | |
parent | c3aa64634e6ed040c6001b4bf43cf0411b632b5d (diff) | |
download | ampache-6eeea6fbcdd9a8a40bbcb94c767572e12a845551.tar.gz ampache-6eeea6fbcdd9a8a40bbcb94c767572e12a845551.tar.bz2 ampache-6eeea6fbcdd9a8a40bbcb94c767572e12a845551.zip |
new sql file and catalog fixes and user reg clean up and acl typo fix
Diffstat (limited to 'templates/show_user_registration.inc.php')
-rw-r--r-- | templates/show_user_registration.inc.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/templates/show_user_registration.inc.php b/templates/show_user_registration.inc.php index 091d85d5..3ddb95cd 100644 --- a/templates/show_user_registration.inc.php +++ b/templates/show_user_registration.inc.php @@ -59,15 +59,15 @@ $email = scrub_in($_REQUEST['email']); /* If we should show the user agreement */ if(conf('user_agreement')){ ?> <tr> - <td height='15'> + <td height="15px"> </td> </tr> <tr> - <td align='center' valign='top'> - <table width='100%' border='0' cellpadding='0' cellspacing='0'> - <tr class="table-header"> - <td align='center'> - <font size="1"><b><u><?php echo _('User Agreement'); ?></u></b></font> + <td> + <table border="0" cellpadding="2" cellspacing="0"> + <tr> + <td> + <span class="box-title"><?php echo _('User Agreement'); ?></span> </td> </tr> <tr> @@ -76,7 +76,7 @@ if(conf('user_agreement')){ ?> </td> </tr> <tr> - <td align='center' height='35' valign='center'> + <td> <input type='checkbox' name='accept_agreement'> <?php echo _('I Accept'); ?> <?php $GLOBALS['error']->print_error('user_agreement'); ?> </td> |