Change the display of the appointment timezone information

This commit is contained in:
Alex Tselegidis 2022-06-02 15:50:08 +02:00
parent 2effec6c23
commit c3b643376b

View file

@ -149,22 +149,24 @@
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label class="form-label"><?= lang('timezone') ?></label> <label class="form-label">
<?= lang('timezone') ?>
</label>
<ul> <div class="border rounded d-flex justify-content-between align-items-center bg-light timezone-info">
<li> <div class="border-end w-50 p-1 text-center">
<?= lang('provider') ?>: <?= lang('provider') ?>:
<span class="provider-timezone"> <span class="provider-timezone">
- -
</span> </span>
</li> </div>
<li> <div class="w-50 p-1 text-center">
<?= lang('current_user') ?>: <?= lang('current_user') ?>:
<span> <span>
<?= $timezones[session('timezone', 'UTC')] ?> <?= $timezones[session('timezone', 'UTC')] ?>
</span> </span>
</li> </div>
</ul> </div>
</div> </div>
</div> </div>
</div> </div>