shop-old/themes/admin/templates/admin_setting_editor.tpl
2026-04-20 01:03:43 +02:00

25 lines
866 B
Smarty

<div style="position:relative;left:10px;width:1000px;">
<h2>Persönliche Einstellungen</h2>
<div class="full box">
<form method="post" action="./index.php?admin_modul=admin_setting_editor&action=submit" enctype="multipart/form-data">
<div class="edit_title">Admin-Einstellungen</div>
<div style="width:300px;margin-right:9px;">
<label for="language">Sprache</label><br />
<select name="form_data[language]">
{foreach from=$language_selection item=lang key=key}
<option value="{$key}" {if $admin_language == $key}selected{/if}>{$lang}</option>
{/foreach}
</select>
</div>
<input type="submit" name="submit" id="submit" value="speichern" style="margin-top:10px;position:relative;left:400px;width:200px;-moz-box-sizing:border-box;border:1px solid #B5C0F9;color:#009900;display:block;font-weight:bold;" />
</form>
</div>
</div>