diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_add_access.inc | 2 | ||||
-rw-r--r-- | templates/show_user_registration.inc.php | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/templates/show_add_access.inc b/templates/show_add_access.inc index 237f0c6f..3b92c65b 100644 --- a/templates/show_add_access.inc +++ b/templates/show_add_access.inc @@ -68,7 +68,7 @@ <option selected="selected" value="stream"><?php echo _('Stream Access'); ?></option> <option value="interface"><?php echo _('Web Interface'); ?></option> <option value="network"><?php echo _('Local Network Definition'); ?></option> - <option vlaue="xml-rpc"><?php echo _('XML-RPC'); ?></option> + <option value="xml-rpc"><?php echo _('XML-RPC'); ?></option> </select> </td> </tr> 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> |