diff options
| author | spiderr <spider@viovio.com> | 2013-05-09 21:34:28 -0400 |
|---|---|---|
| committer | spiderr <spider@viovio.com> | 2013-05-09 21:34:28 -0400 |
| commit | d5fbd6bbb2de24f3a850f4a8d21a965f9c445b8d (patch) | |
| tree | 389aef5bfbe1326748f0b6cec3c6b622388b4833 /templates/register.tpl | |
| parent | 0de9dce976fbcff41bc0d8e411212696a108a186 (diff) | |
| download | users-d5fbd6bbb2de24f3a850f4a8d21a965f9c445b8d.tar.gz users-d5fbd6bbb2de24f3a850f4a8d21a965f9c445b8d.tar.bz2 users-d5fbd6bbb2de24f3a850f4a8d21a965f9c445b8d.zip | |
smarty3 and bootstrap fixes
Diffstat (limited to 'templates/register.tpl')
| -rw-r--r-- | templates/register.tpl | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/templates/register.tpl b/templates/register.tpl index cc5b1e5..24cea1f 100644 --- a/templates/register.tpl +++ b/templates/register.tpl @@ -111,13 +111,12 @@ {/if} {/if} {if $gBitUser->hasPermission( 'p_users_view_user_homepage' ) } - {*For public sites, get user approval to display information*} <div class="control-group"> {formlabel label="User information" for="users_information"} {forminput} <select name="users_information" id="users_information"> - <option value="private" selected="selected">{tr}private{/tr}</option> - <option value="public">{tr}public{/tr}</option> + <option value="private" selected="selected">{tr}Private{/tr}</option> + <option value="public">{tr}Public{/tr}</option> </select> {formhelp note="Please select whether you would like to be a public or private user (you can change this later)"} {/forminput} @@ -186,12 +185,14 @@ {/section} {foreach from=$auth_reg_fields item='output' key='op_id'} - {assign var=op_name value="auth[$op_id]"} + {assign var=op_name value="auth[`$op_id`]"} <div class="control-group"> {formlabel label=$output.label for=$op_id} {forminput} {if $output.type == 'checkbox'} - {html_checkboxes name="$op_name" values="y" selected=$output.value labels=false id=$op_id} + <label class="checkbox"> + {html_checkboxes name="$op_name" values="y" selected=$output.value labels=false id=$op_id} + </label> {elseif $output.type == 'option'} <select name="{$op_name}" id="{$op_id}"> {foreach from=$output.options item='op_text' key='op_value'} |
