2006-08-14 17:40:12 +02:00
|
|
|
<?cs # $Id$ ?>
|
|
|
|
|
|
|
|
<div id="config">
|
|
|
|
<h1><?cs var:html_escape(Lang.Title.Config) ?></h1>
|
|
|
|
|
2006-09-07 13:21:56 +02:00
|
|
|
<?cs call:print_form_header("config_do") ?>
|
2006-08-14 17:40:12 +02:00
|
|
|
<?cs if:Data.Config.AdminPasswordIsSet ?>
|
|
|
|
<p><label for="current_admin_password"><?cs var:html_escape(Lang.Text.EnterCurrentAdminPassword) ?></label><br/>
|
|
|
|
<input type="password" id="current_admin_password" name="current_admin_password" size="20" maxlength="40" /> </p>
|
|
|
|
<?cs /if ?>
|
|
|
|
|
|
|
|
<!-- turned off - will get moved to system-settings
|
|
|
|
<p><label for="ip"><?cs var:html_escape(Lang.Text.IPAddress) ?></label><br/>
|
|
|
|
<input type="text" id="ip" size="16" maxsize="15" name="ip"
|
|
|
|
value="<?cs var:Data.Config.IP ?>" /><p>
|
|
|
|
-->
|
|
|
|
|
|
|
|
<p><label for="timeout"><?cs var:html_escape(Lang.Text.TimeOut) ?></label><br/>
|
|
|
|
<input type="text" id="timeout" size="5" maxsize="5" name="timeout"
|
|
|
|
value="<?cs var:Data.Config.TimeOut ?>" /></p>
|
|
|
|
|
|
|
|
<p><label for="language"><?cs var:html_escape(Lang.Text.SelectLanguage) ?></label><br/>
|
|
|
|
<select name="language">
|
|
|
|
<?cs each:item = Data.Languages ?>
|
|
|
|
<option value="<?cs name:item ?>" <?cs if:(name(item) == Data.Config.Language) ?>selected="selected"<?cs /if ?>><?cs var:item ?></option>
|
|
|
|
<?cs /each ?>
|
|
|
|
</select></p>
|
|
|
|
|
|
|
|
<button type="submit"><?cs var:html_escape(Lang.Button.SaveConfig) ?></button>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|