mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 13:03:12 +01:00
81 lines
2.2 KiB
Smarty
81 lines
2.2 KiB
Smarty
<!-- BEGIN header -->
|
|
<form method="POST" action="{action_url}">
|
|
<table border="0" align="center">
|
|
<tr bgcolor="{th_bg}">
|
|
<td colspan="2"><font color="{th_text}"> <b>{title}</b></font></td>
|
|
</tr>
|
|
<!-- END header -->
|
|
<!-- BEGIN body -->
|
|
<tr bgcolor="{row_on}">
|
|
<td colspan="2"> </td>
|
|
</tr>
|
|
|
|
<tr bgcolor="{row_off}">
|
|
<td colspan="2"> <b>{lang_Preferences}</b></td>
|
|
</tr>
|
|
|
|
<tr bgcolor="{row_on}">
|
|
<td>{lang_Enter_the_title_for_your_site}.</td>
|
|
<td><input name="newsettings[site_title]" value="{value_site_title}"></td>
|
|
</tr>
|
|
|
|
<tr bgcolor="{row_off}">
|
|
<td>{lang_Show_'powered_by'_logo_on}:</td>
|
|
<td>
|
|
<select name="newsettings[showpoweredbyon]">
|
|
<option value="bottom" {selected_showpoweredbyon_bottom}>bottom</option>
|
|
<option value="top" {selected_showpoweredbyon_top}>top</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr bgcolor="{row_on}">
|
|
<td>{lang_Interface}/{lang_Template_Selection}:</td>
|
|
<td>
|
|
<select name="newsettings[template_set]">
|
|
{hook_template_set}
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr bgcolor="{row_off}">
|
|
<td>{lang_Use_theme}:<br></td>
|
|
<td>
|
|
<select name="newsettings[force_theme]">
|
|
{hook_force_theme}
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr bgcolor="{row_on}">
|
|
<td>{lang_Use_pure_HTML_compliant_code_(not_fully_working_yet)}:</td>
|
|
<td><input type="checkbox" name="newsettings[htmlcompliant]" value="True" {checked_htmlcompliant}></td>
|
|
</tr>
|
|
|
|
<tr bgcolor="{row_off}">
|
|
<td>{lang_Use_cookies_to_pass_sessionid}:</td>
|
|
<td><input type="checkbox" name="newsettings[usecookies]" value="True" {checked_usecookies}></td>
|
|
</tr>
|
|
|
|
<tr bgcolor="{row_on}">
|
|
<td>{lang_Would_you_like_phpGroupWare_to_check_for_a_new_version<br>when_admins_login_?}:</td>
|
|
<td><input type="checkbox" name="newsettings[checkfornewversion]" value="True" {checked_checkfornewversion}></td>
|
|
</tr>
|
|
<!-- END body -->
|
|
|
|
<!-- BEGIN footer -->
|
|
<tr bgcolor="{th_bg}">
|
|
<td colspan="2">
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" align="center">
|
|
<input type="submit" name="submit" value="Submit">
|
|
<input type="submit" name="cancel" value="Cancel">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<!-- END footer -->
|