adding the health-form.html and building it out
This commit is contained in:
parent
a474d17acc
commit
edb7b03d08
|
@ -1683,14 +1683,14 @@ select {
|
||||||
margin-bottom: 2rem;
|
margin-bottom: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mt-8 {
|
|
||||||
margin-top: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mr-4 {
|
.mr-4 {
|
||||||
margin-right: 1rem;
|
margin-right: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mt-8 {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
.-mr-2 {
|
.-mr-2 {
|
||||||
margin-right: -0.5rem;
|
margin-right: -0.5rem;
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,9 +7,9 @@ showHeadingAnchors: false
|
||||||
|
|
||||||
(TFC) is a rural ministry reaching out to the mission field of teenagers in rural communities across Northwest Kansas and Southwest Nebraska. In rural communities where youth ministry programs and resources are limited, TFC desires to partner with churches to meet this need. Whether this is through providing community youth groups, coaching those already working with youth, or supplying resources and extra curricular activities for area ministries, TFC desires to connect teens with the truth of Jesus Christ and equip them to live out the Great Commission.
|
(TFC) is a rural ministry reaching out to the mission field of teenagers in rural communities across Northwest Kansas and Southwest Nebraska. In rural communities where youth ministry programs and resources are limited, TFC desires to partner with churches to meet this need. Whether this is through providing community youth groups, coaching those already working with youth, or supplying resources and extra curricular activities for area ministries, TFC desires to connect teens with the truth of Jesus Christ and equip them to live out the Great Commission.
|
||||||
|
|
||||||
<!-- {{< button href="/mt-form" target="_self" >}} -->
|
{{< button href="/health-form" target="_self" >}}
|
||||||
<!-- Sign up for Mission Trip! -->
|
Fill out your health form!
|
||||||
<!-- {{< /button >}} -->
|
{{< /button >}}
|
||||||
|
|
||||||
## Our Vision
|
## Our Vision
|
||||||
Our vision is to change the world from the heart of America by providing disciple making opportunities that serve communities where student ministries are limited.
|
Our vision is to change the world from the heart of America by providing disciple making opportunities that serve communities where student ministries are limited.
|
||||||
|
|
|
@ -5,14 +5,6 @@ omit_header_text: true
|
||||||
layout: simple
|
layout: simple
|
||||||
sharingLinks: false
|
sharingLinks: false
|
||||||
---
|
---
|
||||||
Here are the [parent](/mt-parent-form), [teacher](/mt-teacher-form), and [church-related](/mt-church-form) references forms! Please click the appropriate one for them!
|
Here you can fill out your health form in order to go to larger TFC events like ice skating, camp, SPLASH, and mission trip! If you've already filled out a form in May, then you won't need another until the next May! The current active health form is from {{< health-form-year >}}
|
||||||
|
|
||||||
## Mission Trip Agreement
|
|
||||||
> We cannot accept your application if you can't agree to the following.
|
|
||||||
|
|
||||||
- I agree to obey all rules and guidelines that TFC Connection and other associated ministries establish, realizing they have my best interest and welfare in mind. I will trust their judgment and obey them. **The staff have the right to confront me if they see a problem in my attitude or in my obeying the rules.**
|
|
||||||
- I agree to participate in the support raising part of this project. Even though I may have the finances to pay my own way, I will send out a minimum of 10 letters to people who would be interested in this project. **I will also respect the deadlines to get my letters in the mail and realize this may lead to my dismissal from a trip if I haven’t done my part.**
|
|
||||||
- I realize I am expected to do my share of the work on the projects and I will be willing to do what is asked of me.
|
|
||||||
- I will work at making this mission trip a priority, even if other conflicts come up, I will work to still go on this trip.
|
|
||||||
|
|
||||||
{{< health-form >}}
|
{{< health-form >}}
|
||||||
|
|
2
layouts/shortcodes/health-form-year.html
Normal file
2
layouts/shortcodes/health-form-year.html
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
{{ time.Format "Jan 2006" "2022-05-01" }} -
|
||||||
|
{{ time.Format "Jan 2006" "2023-05-01" }}.
|
307
layouts/shortcodes/health-form.html
Normal file
307
layouts/shortcodes/health-form.html
Normal file
|
@ -0,0 +1,307 @@
|
||||||
|
{{ $formClasses := "bg-neutral-500 text-neutral-50 placeholder-neutral-300 focus:ring-2 focus:ring-primary-500 focus:ring-offset-2 focus:ring-offset-transparent m-2 p-3 rounded-lg hover:bg-neutral-500 checked:text-neutral-500" }}
|
||||||
|
|
||||||
|
<script>
|
||||||
|
function submitForm(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
const form = document.getElementById('form');
|
||||||
|
const data = new FormData(form);
|
||||||
|
|
||||||
|
console.log(data.get("birthdate"));
|
||||||
|
const birthdate = new Date(data.get("birthdate"));
|
||||||
|
const age = calculate_age(birthdate);
|
||||||
|
data.append("age", age);
|
||||||
|
|
||||||
|
var xhr = new XMLHttpRequest();
|
||||||
|
xhr.open("POST", "https://n8n.tfcconnection.org/webhook/health-form");
|
||||||
|
xhr.send(data);
|
||||||
|
console.log(data);
|
||||||
|
console.log("Hallo!");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
function calculate_age(dob) {
|
||||||
|
var diff_ms = Date.now() - dob.getTime();
|
||||||
|
var age_dt = new Date(diff_ms);
|
||||||
|
|
||||||
|
return Math.abs(age_dt.getUTCFullYear() - 1970);
|
||||||
|
}
|
||||||
|
|
||||||
|
function process() {
|
||||||
|
var covered = document.getElementById("medical-coverage").checked;
|
||||||
|
console.log(covered);
|
||||||
|
if (covered) {
|
||||||
|
document.getElementById('policy').hidden = false;
|
||||||
|
console.log(document.getElementById('policy'))
|
||||||
|
console.log("WOOHOO");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
document.getElementById('policy').hidden = true;
|
||||||
|
console.log(document.getElementById('policy'))
|
||||||
|
console.log("NEGATORY");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
document.addEventListener('DOMContentLoaded', process);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div id="health-form" class="form text-lg w-full">
|
||||||
|
<form id='form' onsubmit="submitForm(event)" autocomplete="on" method="post" target="_parent" class="w-full items-center flex flex-wrap">
|
||||||
|
<h3 class="basis-full">2022-2023 Health Form</h3>
|
||||||
|
<div class="basis-full flex flex-wrap my-4">
|
||||||
|
<label for="firstname" class="basis-full">What is your first and last name?</label>
|
||||||
|
<br/>
|
||||||
|
<input type="text" id="firstname" name="firstname"
|
||||||
|
placeholder="First Name" class="flex-1 form-input {{ $formClasses }}">
|
||||||
|
<input type="text" id="lastname" name="lastname"
|
||||||
|
placeholder="Last Name" class="flex-1 form-input {{ $formClasses }}">
|
||||||
|
</div>
|
||||||
|
<div class="basis-full my-8">
|
||||||
|
<div class="">
|
||||||
|
<label for="birthdate" class="">When were you born?</label>
|
||||||
|
<input type="date" id="birthdate" name="birthdate"
|
||||||
|
class="form-date {{ $formClasses }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="basis-full flex flex-wrap my-4">
|
||||||
|
<label for="parentfirstname" class="basis-full">What is your parent's first and last name?</label>
|
||||||
|
<input type="text" id="parentfirstname" name="parentfirstname"
|
||||||
|
class="flex-1 form-input {{ $formClasses }}"
|
||||||
|
placeholder="First Name">
|
||||||
|
<input type="text" id="parentlastname" name="parentlastname"
|
||||||
|
class="flex-1 form-input {{ $formClasses }}"
|
||||||
|
placeholder="Last Name">
|
||||||
|
</div>
|
||||||
|
<div class="basis-full flex flex-wrap my-4">
|
||||||
|
<label for="street" class="basis-full">What is your address?</label>
|
||||||
|
<input type="text" id="street" name="street"
|
||||||
|
class="basis-full form-input {{ $formClasses }}"
|
||||||
|
placeholder="Street Address">
|
||||||
|
<input type="text" id="city" name="city"
|
||||||
|
class="flex-auto form-input {{ $formClasses }}"
|
||||||
|
placeholder="City">
|
||||||
|
<input type="text" id="state" name="state"
|
||||||
|
class="flex-auto form-input {{ $formClasses }}"
|
||||||
|
placeholder="State">
|
||||||
|
<input type="text" id="zip" name="zip"
|
||||||
|
class="flex-auto form-input {{ $formClasses }}"
|
||||||
|
placeholder="Zip Code">
|
||||||
|
</div>
|
||||||
|
<div class="basis-full flex flex-wrap items-center my-8">
|
||||||
|
<div class="flex-auto flex flex-wrap items-center">
|
||||||
|
<label for="cellphone" class="mr-4">Cell phone</label>
|
||||||
|
<input type="tel" id="cellphone" name="cellphone"
|
||||||
|
pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}"
|
||||||
|
class="flex-auto form-input {{ $formClasses }}">
|
||||||
|
</div>
|
||||||
|
<div class="flex-auto flex flex-wrap items-center">
|
||||||
|
<label for="homephone" class="mr-4">Home phone</label>
|
||||||
|
<input type="tel" id="homephone" name="homephone"
|
||||||
|
pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}"
|
||||||
|
class="flex-auto form-input {{ $formClasses }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="basis-full flex flex-wrap my-4">
|
||||||
|
<label for="add-emergency-contact" class="basis-full">Additional Emergency Contact</label>
|
||||||
|
<input type="text" id="add-emergency-contact" name="add-emergency-contact"
|
||||||
|
class="flex-auto form-input {{ $formClasses }}"
|
||||||
|
placeholder="Full Name">
|
||||||
|
<input type="text" id="add-emergency-contact-phone"
|
||||||
|
name="add-emergency-contact-phone"
|
||||||
|
class="flex-auto form-input {{ $formClasses }}"
|
||||||
|
placeholder="Phone Number">
|
||||||
|
</div>
|
||||||
|
<div class="basis-full flex flex-wrap my-4">
|
||||||
|
<label for="doctor" class="basis-full">Doctor</label>
|
||||||
|
<input type="text" id="doctorname" name="doctorname"
|
||||||
|
class="flex-auto form-input {{ $formClasses }}"
|
||||||
|
placeholder="Doctor's Name">
|
||||||
|
<input type="text" id="doctorcity" name="doctorcity"
|
||||||
|
class="flex-auto form-input {{ $formClasses }}"
|
||||||
|
placeholder="Doctor's City">
|
||||||
|
<input type="text" id="doctorphone"
|
||||||
|
name="doctorphone"
|
||||||
|
class="flex-auto form-input {{ $formClasses }}"
|
||||||
|
placeholder="Phone Number">
|
||||||
|
</div>
|
||||||
|
<div class="basis-full my-4 flex flex-wrap items-center">
|
||||||
|
<label for="medical-coverage" class="basis-full mt-8">Is this participant covered by medical insurance?</label>
|
||||||
|
<div class="basis-full flex flex-wrap items-center">
|
||||||
|
<input type="radio" id="medical-coverage" name="medical-coverage"
|
||||||
|
onclick="process()" value="yes"
|
||||||
|
class="flex-none form-input {{ $formClasses }} checked">
|
||||||
|
<label for="medical-coverage" class="flex-auto">Yes</label>
|
||||||
|
</div>
|
||||||
|
<div class="basis-full flex flex-wrap items-center">
|
||||||
|
<input type="radio" id="medical-coverage" name="medical-coverage"
|
||||||
|
onclick="process()" value="no"
|
||||||
|
class="flex-none form-input {{ $formClasses }} ">
|
||||||
|
<label for="medical-coverage" class="flex-auto">No</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="policy" class="basis-full flex flex-wrap my-4">
|
||||||
|
<label for="insurance-name" class="basis-full">Insurance Name</label>
|
||||||
|
<input type="text" id="insurance-name" name="insurance-name"
|
||||||
|
class="flex-1 form-input {{ $formClasses }}"
|
||||||
|
placeholder="Insurance Name">
|
||||||
|
<label for="policy-number" class="basis-full">Policy Number</label>
|
||||||
|
<input type="text" id="policy-number" name="policy-number"
|
||||||
|
class="flex-1 form-input {{ $formClasses }}"
|
||||||
|
placeholder="Policy Number">
|
||||||
|
</div>
|
||||||
|
<div class="basis-full my-4 mb-8 flex flex-wrap">
|
||||||
|
<label for="image" class="basis-full">
|
||||||
|
Please give us a scanned copy of your insurance card.
|
||||||
|
</label>
|
||||||
|
<input type="file" id="image" name="image"
|
||||||
|
class="file:my-4 file:ml-2 file:py-2 file:px-4 file:rounded-lg file:border-0 file:text-sm file:font-semibold file:bg-neutral-500 file:text-neutral-100 hover:file:bg-primary-300 hover:file:ring-offset-2 hover:file:ring-2 hover:file:ring-offset-transparent hover:file:text-primary-500 hover:file:ring-primary-500">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="basis-full flex flex-wrap items-center">
|
||||||
|
<h3 class="basis-full">Please read and agree to the following</h3>
|
||||||
|
<li>On this {{ now.Format "2" }}{{ if in (slice 1 21 31) now.Day}}st{{ else if in (slice 2 22) now.Day}}nd{{ else if in (slice 3 23) now.Day}}rd{{ else }}th{{ end }} day of {{ now.Format "January 2006" }}, I/we the parent(s)/legal guardian(s) of the above-named child ("Participant") do hereby delegate to the TFC Connection Staff a "Power of Attorney" for the above-named child for the purpose of having custody of my/our child and my/our consent to any needed emergency/medical treatment of my/our child.
|
||||||
|
<li>In the event that I cannot be reached in an emergency during the dates specified on this form, I hereby give my permission to the physician or dentist selected by the TFC Connection Staff to hospitalize, to secure proper treatment, and/or order any injection, anesthesia, or surgery for my son or daughter as deemed necessary.
|
||||||
|
<li>I understand that every activity sponsored by TFC Connection is carefully planned and adequately supervised by mature adults. However, even with the best planning and precaution, unforeseen events can occur. By signing this form as parent/guardian, I/we agree to assume and accept all risks and hazards inherent in ministry-related activities and events. I/we acknowledge that participation in TFC Connection ministry activities and events involves risk to the participant (and to the participant's parents or guardians, if the participant is a minor), and may result in various types of injury including, but not limited to, the following: sickness, exposure to infectious/communicable disease, bodily injury, death, emotional injury, personal injury, property damage, and financial damage.
|
||||||
|
<li>In consideration for the opportunity to participate in TFC Connection activities and events, the participant (or parent/guardian if the participant is a minor) acknowledges and accepts the risks of injury associated with participation in and transportation to and from the activities or events. The participant (or parent/guardian) accepts personal financial responsibility for any injury or other loss sustained during the activity or event, or during transportation to and from the activity or event, as well as for any medical treatment rendered to the participant that is authorized by the sponsor or its agents, employees, volunteers, or any other representatives (collectively referred to as the "activity sponsor"). Further, the participant (or parent/guardian) releases and promises to indemnify, defend, and hold harmless the activity sponsor for any injury arising directly or indirectly out of ministry activities and events, or transportation to and from activities and events, whether such injury arises out of the negligence of the activity sponsor, the participant, or otherwise.
|
||||||
|
<li>I/we also agree not to hold TFC Connection, it's employees or volunteer assistants liable for damages, losses, or injuries to the participant or their personal property. As parent/guardian, I understand that I am signing for the minor named on this form and the signatures are to provide for the medical release and the liability release.
|
||||||
|
<li>Further, should it be necessary for the participant to return home due to medical reasons, disciplinary action, or otherwise, I/we hereby assume transportation costs for their return.
|
||||||
|
<li>I give permission to TFC Connection to use my child's image in photos or videos taken at TFC sponsored activities and events in order to publicize or promote TFC activities, including promotional materials, the TFC website, and social media pages.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="basis-full my-4 flex flex-wrap items-center">
|
||||||
|
<label for="agreement" class="basis-full mt-8">Do you agree with the above?</label>
|
||||||
|
<div class="basis-full flex flex-wrap items-center">
|
||||||
|
<input type="radio" id="agreement" name="agreement"
|
||||||
|
onclick="process()" value="yes"
|
||||||
|
class="flex-none form-input {{ $formClasses }} checked">
|
||||||
|
<label for="agreement" class="flex-auto">Yes</label>
|
||||||
|
</div>
|
||||||
|
<div class="basis-full flex flex-wrap items-center">
|
||||||
|
<input type="radio" id="agreement" name="agreement"
|
||||||
|
onclick="process()" value="no"
|
||||||
|
class="flex-none form-input {{ $formClasses }} ">
|
||||||
|
<label for="agreement" class="flex-auto">No</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="basis-full my-4 flex flex-wrap items-center">
|
||||||
|
<label for="allergies" class="basis-full mt-8">What allergies do we need to be aware of?</label>
|
||||||
|
<div class="basis-full flex flex-wrap items-center">
|
||||||
|
<input type="radio" id="allergies" name="allergies"
|
||||||
|
value="none" class="flex-none form-input {{ $formClasses }}" checked>
|
||||||
|
<label for="allergies" class="flex-auto">None</label>
|
||||||
|
</div>
|
||||||
|
<div class="basis-full flex flex-wrap items-center">
|
||||||
|
<input type="radio" id="allergies" name="allergies"
|
||||||
|
value="insects" class="flex-none form-input {{ $formClasses }}">
|
||||||
|
<label for="allergies" class="flex-auto">Insects</label>
|
||||||
|
</div>
|
||||||
|
<div class="basis-full flex flex-wrap items-center">
|
||||||
|
<input type="radio" id="allergies" name="allergies"
|
||||||
|
value="plants" class="flex-none form-input {{ $formClasses }}">
|
||||||
|
<label for="allergies" class="flex-auto">Plants or Weeds</label>
|
||||||
|
</div>
|
||||||
|
<div class="basis-full flex flex-wrap items-center">
|
||||||
|
<input type="radio" id="allergies" name="allergies"
|
||||||
|
value="animals" class="flex-none form-input {{ $formClasses }}">
|
||||||
|
<label for="allergies" class="flex-auto">Animals</label>
|
||||||
|
</div>
|
||||||
|
<div class="basis-full flex flex-wrap items-center">
|
||||||
|
<input type="radio" id="allergies" name="allergies"
|
||||||
|
value="medication" class="flex-none form-input {{ $formClasses }}">
|
||||||
|
<label for="allergies" class="flex-auto">Medication</label>
|
||||||
|
</div>
|
||||||
|
<div class="basis-full flex flex-wrap items-center">
|
||||||
|
<input type="radio" id="allergies" name="allergies"
|
||||||
|
value="other" class="flex-none form-input {{ $formClasses }}">
|
||||||
|
<input type="text" id="allergies-other" name="allergies-other"
|
||||||
|
class="flex-auto form-input {{ $formClasses }}" placeholder="Other">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="basis-full mt-10">
|
||||||
|
<label for="specific-allergies" class="p-4">
|
||||||
|
Please list specific allergies
|
||||||
|
</label>
|
||||||
|
<br/>
|
||||||
|
<textarea id="specific-allergies" name="specific-allergies"
|
||||||
|
class="form-input w-full h-64 {{ $formClasses }}"
|
||||||
|
placeholder=""></textarea>
|
||||||
|
</div>
|
||||||
|
<div class="basis-full mt-10">
|
||||||
|
<label for="allergic-treatment" class="p-4">
|
||||||
|
Treatment for those allergies
|
||||||
|
</label>
|
||||||
|
<br/>
|
||||||
|
<textarea id="allergic-treatment" name="allergic-treatment"
|
||||||
|
class="form-input w-full h-64 {{ $formClasses }}"
|
||||||
|
placeholder=""></textarea>
|
||||||
|
</div>
|
||||||
|
<div class="basis-full mt-10">
|
||||||
|
<label for="conditions" class="p-4">
|
||||||
|
Physical or mental conditions that we should be aware of
|
||||||
|
</label>
|
||||||
|
<br/>
|
||||||
|
<textarea id="conditions" name="conditions"
|
||||||
|
class="form-input w-full h-64 {{ $formClasses }}"
|
||||||
|
placeholder=""></textarea>
|
||||||
|
</div>
|
||||||
|
<div class="basis-full my-8">
|
||||||
|
<label for="tetanus-shot" class="">When was your last tetanus shot?</label>
|
||||||
|
<input type="date" id="tetanus-shot" name="tetanus-shot"
|
||||||
|
class="form-date {{ $formClasses }}">
|
||||||
|
</div>
|
||||||
|
<div class="basis-full my-4 flex flex-wrap items-center">
|
||||||
|
<label for="swimming-ability" class="basis-full mt-8">Swimming ability</label>
|
||||||
|
<div class="basis-full flex flex-wrap items-center">
|
||||||
|
<input type="radio" id="swimming-ability" name="swimming-ability"
|
||||||
|
value="good" class="flex-none form-input {{ $formClasses }}" checked>
|
||||||
|
<label for="swimming-ability" class="flex-auto">Good</label>
|
||||||
|
</div>
|
||||||
|
<div class="basis-full flex flex-wrap items-center">
|
||||||
|
<input type="radio" id="swimming-ability" name="swimming-ability"
|
||||||
|
value="fair" class="flex-none form-input {{ $formClasses }}">
|
||||||
|
<label for="swimming-ability" class="flex-auto">Fair</label>
|
||||||
|
<div class="basis-full flex flex-wrap items-center">
|
||||||
|
<input type="radio" id="swimming-ability" name="swimming-ability"
|
||||||
|
value="none" class="flex-none form-input {{ $formClasses }}">
|
||||||
|
<label for="swimming-ability" class="flex-auto">None</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="basis-full mt-10">
|
||||||
|
<h3 class="p-4">What medication schedule do you follow?</h3>
|
||||||
|
<label for="medication-schedule" class="p-4">
|
||||||
|
Please write them out in this pattern and a new medication on each line.
|
||||||
|
<br>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Medication Name</th>
|
||||||
|
<th>Time Given</th>
|
||||||
|
<th>How Many</th>
|
||||||
|
<th>Purpose of Medication</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>(Sample) Tums,</td>
|
||||||
|
<td>After each meal,</td>
|
||||||
|
<td>1-2,</td>
|
||||||
|
<td>Stomach issues</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</label>
|
||||||
|
<textarea id="medication-schedule" name="medication-schedule"
|
||||||
|
class="form-input w-full h-64 {{ $formClasses }}"
|
||||||
|
placeholder=""></textarea>
|
||||||
|
</div>
|
||||||
|
<div class="basis-full mt-10">
|
||||||
|
<label for="other-notes" class="p-4">
|
||||||
|
Is there anything you want the TFC staff to know that would help your child have a great experience?
|
||||||
|
</label>
|
||||||
|
<br/>
|
||||||
|
<textarea id="other-notes" name="other-notes"
|
||||||
|
class="form-input w-full h-64 {{ $formClasses }}"
|
||||||
|
placeholder=""></textarea>
|
||||||
|
</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>
|
||||||
|
</form>
|
||||||
|
</div>
|
Loading…
Reference in a new issue