2021-11-16 12:15:37 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @var array $grouped_timezones
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
2021-11-12 10:38:20 +03:00
|
|
|
<div id="wizard-frame-2" class="wizard-frame" style="display:none;">
|
|
|
|
<div class="frame-container">
|
|
|
|
|
|
|
|
<h2 class="frame-title"><?= lang('appointment_date_and_time') ?></h2>
|
|
|
|
|
|
|
|
<div class="row frame-content">
|
|
|
|
<div class="col-12 col-md-6">
|
|
|
|
<div id="select-date"></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-12 col-md-6">
|
|
|
|
<div id="select-time">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="select-timezone"><?= lang('timezone') ?></label>
|
2021-11-16 12:15:37 +03:00
|
|
|
<?php component('timezone_dropdown','id="select-timezone" class="form-control" value="UTC"', ['timezones' => $grouped_timezones]) ?>
|
2021-11-12 10:38:20 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="available-hours"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="command-buttons">
|
|
|
|
<button type="button" id="button-back-2" class="btn button-back btn-outline-secondary"
|
|
|
|
data-step_index="2">
|
|
|
|
<i class="fas fa-chevron-left mr-2"></i>
|
|
|
|
<?= lang('back') ?>
|
|
|
|
</button>
|
|
|
|
<button type="button" id="button-next-2" class="btn button-next btn-dark"
|
|
|
|
data-step_index="2">
|
|
|
|
<?= lang('next') ?>
|
|
|
|
<i class="fas fa-chevron-right ml-2"></i>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|