Files
medicalalert-web-reloaded/wp/wp-content/themes/medicalalert/tpl/checkout-step-1.tpl
2024-12-02 16:53:56 -05:00

70 lines
1.8 KiB
Smarty

<!-- hidden things for promotional tracking -->
<div class="visually-hidden" aria-hidden="true">
{{{ SESSpromoid }}}
{{{ SESSpromotion_description }}}
{{{ SESScoupon_code }}}
</div>
<div class="step-1-extras">
<p class="consumer-primary fw-bold">Subscriber Contact Information</p>
<p>Please enter the information for the person who will be using the MedicalAlert service.</p>
{{{ subscriber_first_name }}}
{{{ subscriber_last_name }}}
{{{ subscriber_address_1 }}}
<div class="row">
<div class="col">
{{{ subscriber_address_2 }}}
</div>
<div class="col">
{{{ subscriber_zip }}}
</div>
</div>
<div class="row">
<div class="col">
{{{ subscriber_city }}}
</div>
<div class="col">
{{{ subscriber_state }}}
</div>
</div>
{{{ subscriber_email }}}
{{{ subscriber_phone }}}
<p class="consumer-primary fw-bold pt-4">Emergency Contacts</p>
<div class="d-flex justify-content-between" style="font-size: 22px; color: #505050">
<div class="d-flex">
<input class="mt-2 me-2" type="checkbox" v-model="show_caregiver_form">
<label>Add Emergency Contacts</label>
</div>
</div>
<div v-show="show_caregiver_form">
{{{ caregiver_relation }}}
{{{ caregiver_first_name }}}
{{{ caregiver_last_name }}}
{{{ caregiver_email }}}
{{{ caregiver_phone }}}
</div>
<p class="consumer-primary fw-bold pt-4">Billing Information</p>
<div class="d-flex justify-content-between" style="font-size: 22px; color: rgb(80, 80, 80);">
<div class="d-flex">
<input class="mt-2 me-2" type="checkbox" id="sameAsSubscriber" name="sameAsSubscriber" onclick="copySubscriberAddress()">
<label for="sameAsSubscriber">Billing same as Subscriber</label>
</div>
</div>
</div>