fixing minor issues in the mt-form and mt-church-form

This commit is contained in:
Chris Cochrun 2023-01-05 21:01:47 -06:00
parent d8bc1b8602
commit f480f1513b
2 changed files with 2 additions and 16 deletions

View file

@ -75,7 +75,7 @@
</div>
<div class="basis-full mt-10">
<label for="pos-characteristics" class="p-4">
What positive or negative characteristics do you see this teenager bringing to a mission trip team?
What positive characteristics do you see this teenager bringing to a mission trip team?
</label>
<br/>
<textarea id="pos-characteristics" name="pos-characteristics"

View file

@ -18,10 +18,7 @@
// This is how to send them. window.location.href = '/thankyou/';
var payment = document.getElementById('registration').value;
if (document.getElementById('health-form-yes').checked)
window.location.href = '/mt-health-form?registration=' + payment;
else
window.location.href = 'https://secure.myvanco.com/L-Z772/campaign/C-13DM3';
// Need to eventually get the user here: https://secure.myvanco.com/L-Z772/campaign/C-13DM3
}
};
@ -375,17 +372,6 @@
Later - Send $25 to the TFC Office
</label>
</div>
<label for="health-form" class="basis-full my-4">
Would you like to fill out the health form now or later?
</label>
<div class="basis-full">
<input type="radio" id="health-form-yes" name="health-form" class="form-input {{ $formClasses }}" value="true" checked>
<label for="health-form" class="">Yes</label>
<input type="radio" id="health-form-no" name="health-form" class="form-input {{ $formClasses }}" value="false">
<label for="health-form" class="">No</label>
</div>
<div class="basis-full mt-8">
<button type="submit" class="content-right rounded-lg bg-primary-700 h-12 w-24 focus:bg-primary-900 focus:ring focus:ring-primary-700 hover:bg-primary-900 float-right">Submit</button>
</div>