theme updates

This commit is contained in:
Tony Volpe
2024-07-17 03:25:05 +00:00
parent 4950d23a30
commit 1cbeccbe26
157 changed files with 2210 additions and 8701 deletions

View File

@@ -6,17 +6,13 @@
</div>
<div class="step-1-extras">
<p class="consumer-primary fw-bold">1. Subscriber Information</p>
<p class="consumer-primary fw-bold">Subscriber Contact Information</p>
<p>Please enter the information for the person who will be using the Lifeline service.</p>
<p class="consumer-primary fw-bold">Subscriber (Person using the service)</p>
{{{ subscriber_first_name }}}
{{{ subscriber_last_name }}}
<hr />
{{{ subscriber_gender }}}
{{{ subscriber_birthdate }}}
<p class="consumer-primary fw-bold pt-4">Subscriber Contact Information</p>
{{{ subscriber_address_1 }}}
<div class="row">
<div class="col">
@@ -37,37 +33,37 @@
{{{ subscriber_email }}}
{{{ subscriber_phone }}}
<p class="consumer-primary fw-bold pt-4">Caregiver Information</p>
<p>It's important to enter caregiver information so they are linked to your Lifeline service and can easily become part of your care circle within the Cares app.</p>
<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 class="d-flex justify-content-between" style="font-size: 22px; color: #505050">
<div class="d-flex">
<input class="mt-2 me-2" type="radio" v-model="show_caregiver_form" id="show_caregiver_form_true" value="true">
<label for="show_caregiver_form_true">Add caregiver information</label>
</div>
<div class="d-flex">
<input class="mt-2 me-2" type="radio" v-model="show_caregiver_form" id="show_caregiver_form_false" value="false">
<label for="show_caregiver_form_false">Add caregiver information at a later time</label>
</div>
</div>
<div v-show="show_caregiver_form === 'true'">
{{{ caregiver_relation }}}
{{{ caregiver_first_name }}}
{{{ caregiver_last_name }}}
{{{ caregiver_email }}}
{{{ caregiver_phone }}}
<div class="d-flex">
<div class="input-wrapper">
<input type="checkbox" v-model="caregiver_authorized_box" />
</div>
<div class="label-wrapper" @click="caregiver_authorized_box = !caregiver_authorized_box">
{{{ caregiver_authorized }}}
</div>
</div>
</div>
<p class="consumer-primary fw-bold pt-4">Billing details</p>
</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>