Language, Theme, Password - Margin fix

This commit is contained in:
BNoiZe
2013-10-20 19:42:25 +02:00
parent a86d2d2df3
commit 55d09ac569
7 changed files with 110 additions and 78 deletions

View File

@@ -10,17 +10,22 @@ $header
<section class="tinyform bradius">
<form method="post" action="{$linker->getLink(array('section' => 'index'))}" enctype="application/x-www-form-urlencoded">
<fieldset>
<legend>Froxlor&nbsp;-&nbsp;{$lng['menue']['main']['changelanguage']}</legend>
<p>
<label for="def_language">{$lng['login']['language']}:</label>&nbsp;
<select id="def_language" name="def_language">$language_options</select>
</p>
<p class="submit">
<input type="hidden" name="s" value="$s" />
<input type="hidden" name="page" value="$page" />
<input type="hidden" name="send" value="send" />
<input type="submit" value="{$lng['menue']['main']['changelanguage']}" />
</p>
<table class="formtable tinyform">
<tr>
<td><label for="def_language">{$lng['login']['language']}:</label></td>
<td><select id="def_language" name="def_language">$language_options</select></td>
</tr>
<tfoot>
<tr>
<td colspan="2" align="center">
<input type="submit" value="{$lng['menue']['main']['changelanguage']}" />
</td>
</tr>
</tfoot>
</table>
</fieldset>
</form>
</section>

View File

@@ -10,25 +10,30 @@ $header
<section class="tinyform bradius">
<form method="post" action="{$linker->getLink(array('section' => 'index'))}" enctype="application/x-www-form-urlencoded">
<fieldset>
<legend>Froxlor&nbsp;-&nbsp;{$lng['menue']['main']['changepassword']}</legend>
<p>
<label for="old_password">{$lng['changepassword']['old_password']}:</label>&nbsp;
<input type="password" id="old_password" name="old_password" />
</p>
<p>
<label for="new_password">{$lng['changepassword']['new_password']}:</label>&nbsp;
<input type="password" id="new_password" name="new_password" />
</p>
<p>
<label for="new_password_confirm">{$lng['changepassword']['new_password_confirm']}:</label>&nbsp;
<input type="password" id="new_password_confirm" name="new_password_confirm" />
</p>
<p class="submit">
<input type="hidden" name="s" value="$s" />
<input type="hidden" name="page" value="$page" />
<input type="hidden" name="send" value="send" />
<input type="submit" value="{$lng['menue']['main']['changepassword']}" />
</p>
<table class="formtable tinyform">
<tr>
<td><label for="old_password">{$lng['changepassword']['old_password']}:</label></td>
<td><input type="password" id="old_password" name="old_password" /></td>
</tr>
<tr>
<td><label for="new_password">{$lng['changepassword']['new_password']}:</label></td>
<td><input type="password" id="new_password" name="new_password" /></td>
</tr>
<tr>
<td><label for="new_password_confirm">{$lng['changepassword']['new_password_confirm']}:</label></td>
<td><input type="password" id="new_password_confirm" name="new_password_confirm" /></td>
</tr>
<tfoot>
<tr>
<td colspan="2" align="center">
<input type="submit" value="{$lng['menue']['main']['changepassword']}" />
</td>
</tr>
</tfoot>
</table>
</fieldset>
</form>
</section>

View File

@@ -10,17 +10,22 @@ $header
<section class="tinyform bradius">
<form method="post" action="{$linker->getLink(array('section' => 'index'))}" enctype="application/x-www-form-urlencoded">
<fieldset>
<legend>Froxlor&nbsp;-&nbsp;{$lng['menue']['main']['changetheme']}</legend>
<p>
<label for="theme">{$lng['panel']['theme']}:</label>&nbsp;
<select id="theme" name="theme">$theme_options</select>
</p>
<p class="submit">
<input type="hidden" name="s" value="$s" />
<input type="hidden" name="page" value="$page" />
<input type="hidden" name="send" value="send" />
<input class="bottom" type="submit" value="{$lng['menue']['main']['changetheme']}" />
</p>
<table class="formtable tinyform">
<tr>
<td><label for="theme">{$lng['panel']['theme']}:</label></td>
<td><select id="theme" name="theme">$theme_options</select></td>
</tr>
<tfoot>
<tr>
<td colspan="2" align="center">
<input class="bottom" type="submit" value="{$lng['menue']['main']['changetheme']}" />
</td>
</tr>
</tfoot>
</table>
</fieldset>
</form>
</section>