mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-12-27 09:03:09 +03:00
Remove the details tag
This commit is contained in:
parent
f54ae1b103
commit
868291173f
1 changed files with 7 additions and 5 deletions
|
@ -24,7 +24,7 @@
|
||||||
<div class="content container">
|
<div class="content container">
|
||||||
<div class="welcome">
|
<div class="welcome">
|
||||||
<h3>Welcome to the Easy!Appointments installation page.</h3>
|
<h3>Welcome to the Easy!Appointments installation page.</h3>
|
||||||
<p><details>
|
<p>
|
||||||
This page will help you set the main settings of your Easy!Appointments installation. You will be able to
|
This page will help you set the main settings of your Easy!Appointments installation. You will be able to
|
||||||
edit these settings and many more in the backend session of your system. Remember to use the
|
edit these settings and many more in the backend session of your system. Remember to use the
|
||||||
<strong class="text-primary"><?= site_url('user/login') ?></strong> URL to connect to the backend section
|
<strong class="text-primary"><?= site_url('user/login') ?></strong> URL to connect to the backend section
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
submit new issues on
|
submit new issues on
|
||||||
<a href="https://github.com/alextselegidis/easyappointments/issues">GitHub Issues</a>
|
<a href="https://github.com/alextselegidis/easyappointments/issues">GitHub Issues</a>
|
||||||
in order to help our development process.
|
in order to help our development process.
|
||||||
</details></p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="alert" hidden></div>
|
<div class="alert" hidden></div>
|
||||||
|
@ -107,12 +107,14 @@
|
||||||
<span class="text-danger">*</span>
|
<span class="text-danger">*</span>
|
||||||
</label>
|
</label>
|
||||||
<select id="language" class="form-control required">
|
<select id="language" class="form-control required">
|
||||||
<?php $config_lang = config('language');
|
<?php
|
||||||
|
$config_lang = config('language');
|
||||||
foreach (vars('available_languages') as $lang): ?>
|
foreach (vars('available_languages') as $lang): ?>
|
||||||
<option value="<?= $lang ?>"<?= ($lang == $config_lang ?' selected':'') ?>>
|
<option value="<?= $lang ?>"<?= $lang == $config_lang ? ' selected' : '' ?>>
|
||||||
<?= ucfirst($lang) ?>
|
<?= ucfirst($lang) ?>
|
||||||
</option>
|
</option>
|
||||||
<?php endforeach; ?>
|
<?php endforeach;
|
||||||
|
?>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue