moved the option to main menu options

This commit is contained in:
HB9HIL 2023-11-05 10:38:12 +01:00
parent 3c1d08f4cb
commit 0a1bb39aff
2 changed files with 17 additions and 19 deletions

View File

@ -165,15 +165,6 @@
<small id="SelectDateFormatHelp" class="form-text text-muted"><?php echo lang('account_log_end_time_hint'); ?></small>
</div>
<div class="form-group">
<label for="quicklog"><?php echo lang('account_quicklog_feature'); ?></label>
<select class="custom-select" id="quicklog" name="user_quicklog">
<option value="0"><?php echo lang('general_word_no'); ?></option>
<option value="1"><?php echo lang('general_word_yes'); ?></option>
</select>
<small id="SelectDateFormatHelp" class="form-text text-muted"><?php echo lang('account_quicklog_feature_hint'); ?></small>
</div>
<div class="form-group">
<label for="SelectDateFormat"><?php echo lang('account_date_format'); ?></label>
<select name="user_date_format" class="custom-select" id="SelectDateFormat"
@ -240,6 +231,15 @@
<option value="0"><?php echo lang('general_word_no'); ?></option>
<option value="1"><?php echo lang('general_word_yes'); ?></option>
</select>
<small> </small>
</div>
<div class="form-group">
<label for="quicklog"><?php echo lang('account_quicklog_feature'); ?></label>
<select class="custom-select" id="quicklog" name="user_quicklog">
<option value="0"><?php echo lang('general_word_no'); ?></option>
<option value="1"><?php echo lang('general_word_yes'); ?></option>
</select>
<small id="SelectDateFormatHelp" class="form-text text-muted"><?php echo lang('account_quicklog_feature_hint'); ?></small>
</div>
</div>
</div>

View File

@ -174,15 +174,6 @@
<small id="SelectDateFormatHelp" class="form-text text-muted"><?php echo lang('account_log_end_time_hint'); ?></small>
</div>
<div class="form-group">
<label for="quicklog"><?php echo lang('account_quicklog_feature'); ?></label>
<select class="custom-select" id="quicklog" name="user_quicklog">
<option value="1" <?php if ($user_quicklog == 1) { echo " selected =\"selected\""; } ?>><?php echo lang('general_word_yes'); ?></option>
<option value="0" <?php if ($user_quicklog == 0) { echo " selected =\"selected\""; } ?>><?php echo lang('general_word_no'); ?></option>
</select>
<small id="SelectDateFormatHelp" class="form-text text-muted"><?php echo lang('account_quicklog_feature_hint'); ?></small>
</div>
<div class="form-group">
<label for="SelectDateFormat"><?php echo lang('account_date_format'); ?></label>
<select name="user_date_format" class="custom-select" id="SelectDateFormat" aria-describedby="SelectDateFormatHelp">
@ -318,7 +309,14 @@
<option value="0" <?php if ($user_show_notes == 0) { echo " selected =\"selected\""; } ?>><?php echo lang('general_word_no'); ?></option>
</select>
</div>
<div class="form-group">
<label for="quicklog"><?php echo lang('account_quicklog_feature'); ?></label>
<select class="custom-select" id="quicklog" name="user_quicklog">
<option value="1" <?php if ($user_quicklog == 1) { echo " selected =\"selected\""; } ?>><?php echo lang('general_word_yes'); ?></option>
<option value="0" <?php if ($user_quicklog == 0) { echo " selected =\"selected\""; } ?>><?php echo lang('general_word_no'); ?></option>
</select>
<small id="SelectDateFormatHelp" class="form-text text-muted"><?php echo lang('account_quicklog_feature_hint'); ?></small>
</div>
</div>
</div>
</div>