mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Arreglo login y configuracion modal borrado
This commit is contained in:
@ -109,7 +109,7 @@
|
||||
<div class="col-lg-12 mb-3">
|
||||
<label class="form-label text-primary"><?=lang("App.settings_label_general_subtitle_1")?></label>
|
||||
</div>
|
||||
<div class="col-lg-9 mb-3">
|
||||
<div class="col-lg-12 mb-3">
|
||||
<label for="title" class="form-label"><?=lang("App.settings_field_title")?></label>
|
||||
<input
|
||||
type="text"
|
||||
@ -120,6 +120,7 @@
|
||||
value="<?= (isset($obj)) ? $obj['title'] : set_value('title');?>"
|
||||
/>
|
||||
</div>
|
||||
<?php /*
|
||||
<div class="col-lg-3 mb-3">
|
||||
<label for="activate_frontend" class="form-label"><?=lang("App.settings_field_frontend")?></label>
|
||||
<?php $id_select = (isset($obj)) ? $obj['activate_frontend'] : set_value('activate_frontend');?>
|
||||
@ -128,6 +129,7 @@
|
||||
<option value="1" <?= $id_select == "1" ? 'selected' : '' ?>><?=lang("App.notification_grid_yes")?></option>
|
||||
</select>
|
||||
</div>
|
||||
*/ ?>
|
||||
<div class="col-lg-6 mb-3">
|
||||
<label class="form-label"><?=lang("App.settings_field_seo_description")?></label>
|
||||
<textarea
|
||||
@ -216,7 +218,7 @@
|
||||
<option value="comma" <?= $id_select == "comma" ? 'selected' : '' ?>><?=lang("App.settings_field_default_currency_separation_coma")?></option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-lg-3 mb-3">
|
||||
<div class="col-lg-4 mb-3">
|
||||
<label for="default_currency_position" class="form-label"><?=lang("App.settings_field_default_currency_position")?></label>
|
||||
<?php $id_select = (isset($obj)) ? $obj['default_currency_position'] : set_value('default_currency_position');?>
|
||||
<select name="default_currency_position" id="default_currency_position" class="select2 form-control">
|
||||
@ -224,7 +226,7 @@
|
||||
<option value="right" <?= $id_select == "right" ? 'selected' : '' ?>><?=lang("App.settings_field_default_currency_position_right")?></option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-lg-3 mb-3">
|
||||
<div class="col-lg-4 mb-3">
|
||||
<label for="default_country" class="form-label"><?=lang("App.settings_field_default_country")?></label>
|
||||
<?php $id_select = (isset($obj)) ? $obj['default_country'] : set_value('default_country');?>
|
||||
<select name="default_country" id="default_country" class="select2 form-control">
|
||||
@ -233,7 +235,7 @@
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-lg-3 mb-3">
|
||||
<div class="col-lg-4 mb-3">
|
||||
<label for="default_theme" class="form-label"><?=lang("App.settings_field_default_theme")?></label>
|
||||
<?php $id_select = (isset($obj)) ? $obj['default_theme'] : set_value('default_theme');?>
|
||||
<select name="default_theme" id="default_theme" class="select2 form-control">
|
||||
@ -244,6 +246,7 @@
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
</div>
|
||||
<?php /*
|
||||
<div class="col-lg-3 mb-3">
|
||||
<label for="default_theme_front" class="form-label"><?=lang("App.settings_field_default_theme_front")?></label>
|
||||
<select name="default_theme_front" id="default_theme_front" class="select2 form-control">
|
||||
@ -254,6 +257,7 @@
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
</div>
|
||||
*/ ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user