piler/webui/view/theme/mobile/templates/user/settings.tpl

166 lines
5.1 KiB
Smarty
Raw Normal View History

2013-04-05 10:16:33 +02:00
<?php if(!isset($x)){ ?>
<form action="settings.php" method="post" name="setpagelen" class="formbottom">
<h4><?php print $text_access_settings; ?></h4>
<div id="search">
<div class="row">
<div class="logincell"><?php print $text_email_addresses; ?>:</div>
2013-08-20 14:47:55 +02:00
<div class="logincell">
2013-04-05 10:16:33 +02:00
<?php print $emails; ?>
</div>
</div>
<?php if(Registry::get('auditor_user') == 1 && RESTRICTED_AUDITOR == 1) { ?>
<div class="row">
<div class="logincell"><?php print $text_domains; ?>:</div>
2013-08-20 14:47:55 +02:00
<div class="logincell">
2013-04-05 10:16:33 +02:00
<?php print $domains; ?>
</div>
</div>
<?php } ?>
<?php if(Registry::get('auditor_user') == 0 || RESTRICTED_AUDITOR == 0) { ?>
<div class="row">
<div class="logincell"><?php print $text_groups; ?>:</div>
2013-08-20 14:47:55 +02:00
<div class="logincell">
2013-04-05 10:16:33 +02:00
<?php print $groups; ?>
</div>
</div>
<?php } ?>
<?php if(ENABLE_FOLDER_RESTRICTIONS == 1) { ?>
<div class="row">
<div class="logincell"><?php print $text_folders; ?>:</div>
2013-08-20 14:47:55 +02:00
<div class="logincell">
2013-04-05 10:16:33 +02:00
<?php print $folders; ?>
</div>
</div>
<?php } ?>
<p><em><?php print $text_access_setting_explanation; ?></em></p>
</div>
<div id="search">
<h4><?php print $text_display_settings; ?></h4>
<div id="search1">
<div class="row">
<div class="logincell"><?php print $text_page_length; ?>:</div>
2013-04-17 12:20:55 +02:00
<div class="tcell">
2013-04-05 10:16:33 +02:00
<select name="pagelen">
<option value="10"<?php if($page_len == 10) { ?> selected="selected"<?php } ?>>10
<option value="20"<?php if($page_len == 20) { ?> selected="selected"<?php } ?>>20
<option value="30"<?php if($page_len == 30) { ?> selected="selected"<?php } ?>>30
<option value="50"<?php if($page_len == 50) { ?> selected="selected"<?php } ?>>50
</select>
</div>
</div>
<div class="row">
<div class="logincell"><?php print $text_theme; ?>:</div>
2013-04-17 12:20:55 +02:00
<div class="tcell">
2013-04-05 10:16:33 +02:00
<select name="theme">
<?php foreach(Registry::get('themes') as $t) { ?>
<option value="<?php print $t; ?>"<?php if(isset($_SESSION['theme']) && $_SESSION['theme'] == $t) { ?> selected="selected"<?php } ?>><?php print $t; ?></option>
<?php } ?>
</select>
</div>
</div>
<div class="row">
<div class="logincell"><?php print $text_language; ?>:</div>
2013-04-17 12:20:55 +02:00
<div class="tcell">
2013-04-05 10:16:33 +02:00
<select name="lang">
<option value=""><?php print $text_use_browser_settings; ?></option>
<?php foreach(Registry::get('langs') as $t) { ?>
<option value="<?php print $t; ?>"<?php if(isset($_SESSION['lang']) && $_SESSION['lang'] == $t) { ?> selected="selected"<?php } ?>><?php print $t; ?></option>
<?php } ?>
</select>
</div>
</div>
<div class="row">
<div class="logincell">&nbsp;</div>
2013-08-01 22:28:42 +02:00
<div class="tcell"><input type="submit" value="<?php print $text_set; ?>" class="btn btn-primary" /> <input type="reset" class="btn" value="<?php print $text_cancel; ?>" onclick="Piler.go_to_default_page();" /></div>
2013-04-05 10:16:33 +02:00
</div>
</div>
</div>
</form>
<p>&nbsp;</p>
<div id="search">
<h4><?php print $text_google_authenticator_settings; ?></h4>
<div id="search1">
<div class="row">
<div class="logincell"><?php print $text_enable; ?>:</div>
<div class="logincell"><input type="checkbox" name="ga_enabled" id="ga_enabled" onclick="Piler.toggle_ga();" <?php if($ga['ga_enabled'] == 1) { ?>checked="checked"<?php } ?> /></div>
</div>
<div class="row">
<div class="logincell"><?php print $text_qr_code; ?>:</div>
<div id="QR" class="logincell">
<?php print $ga['ga_secret']; ?> <a href="#" onclick="Piler.new_qr(); return false;"><?php print $text_refresh_qr_code; ?></a><br /><img src="qr.php?ts=<?php print time(); ?>" />
</div>
</div>
</div>
2013-04-05 10:16:33 +02:00
<p>&nbsp;</p>
2013-04-05 10:16:33 +02:00
<?php if(PASSWORD_CHANGE_ENABLED == 1) { ?>
<div id="search">
<form method="post" name="pwdchange" action="settings.php" class="formbottom">
<div id="ss1">
<div class="row">
<div class="domaincell"><?php print $text_password; ?>:</div>
<div class="domaincell"><input type="password" class="text" name="password" /></div>
</div>
<div class="row">
<div class="domaincell"><?php print $text_password_again; ?>:</div>
<div class="domaincell"><input type="password" class="text" name="password2" /></div>
</div>
<div class="row">
<div class="domaincell">&nbsp;</div>
<div class="domaincell"><input type="submit" class="btn btn-primary" value="<?php print $text_submit; ?>" /> <input type="reset" class="btn" value="<?php print $text_cancel; ?>" /></div>
</div>
</div>
</form>
</div>
<?php } ?>
<p>&nbsp;</p>
<?php } else { ?>
<?php print $x; ?>. <a href="settings.php"><?php print $text_back; ?></a>
<?php } ?>