2021-01-22 15:17:35 -07:00
|
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
|
|
|
|
<div class="page" data-name="appointment">
|
|
|
|
|
|
|
|
<div class="navbar">
|
2021-01-23 15:41:11 -07:00
|
|
|
<div class="navbar-bg"></div>
|
2021-01-22 15:17:35 -07:00
|
|
|
<div class="navbar-inner">
|
|
|
|
<div class="left">
|
2021-05-08 17:10:23 -06:00
|
|
|
<a class="link back hapticbtn" href="#">
|
2021-01-22 15:17:35 -07:00
|
|
|
<i class="icon icon-back"></i>
|
|
|
|
<span class="if-not-md">Back</span>
|
|
|
|
</a>
|
|
|
|
</div>
|
2021-08-14 14:38:55 -06:00
|
|
|
<div class="title">Book Appointment</div>
|
2021-01-22 15:17:35 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2021-08-14 14:38:55 -06:00
|
|
|
{{#if url}}
|
2021-01-22 15:17:35 -07:00
|
|
|
<div class="page-content" style="overflow-y: hidden;">
|
|
|
|
<iframe src="{{url}}" style="width: 100%; border: none; height: 100%;"></iframe>
|
|
|
|
</div>
|
2021-08-14 14:38:55 -06:00
|
|
|
{{else}}
|
|
|
|
<div class="page-content noselect">
|
|
|
|
<div class="row justify-content-center margin-top">
|
|
|
|
<div class="col-100 medium-90 xlarge-75 margin-horizontal">
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
{{#each services}}
|
|
|
|
<div class="col-100 small-50 large-33 no-margin-vertical">
|
|
|
|
<div class="card hapticbtn pointercursor" onclick="router.navigate('/appointment/{{serviceid}}');">
|
|
|
|
<div class="card-content text-align-center padding">
|
|
|
|
<h1 class="no-margin"><i class="{{icon}}"></i></h1>
|
|
|
|
<br />
|
|
|
|
<span style="font-weight: 700;">{{title}}</span>
|
|
|
|
<br />
|
|
|
|
<span>{{text}}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2021-01-22 15:17:35 -07:00
|
|
|
|
|
|
|
</div>
|