|
|
@ -367,24 +367,24 @@ |
|
|
|
@csrf |
|
|
|
@csrf |
|
|
|
<div class="row justify-content-between text-left"> |
|
|
|
<div class="row justify-content-between text-left"> |
|
|
|
<div class="form-group col-sm-6 flex-column d-flex"> <label class="form-control-label">Full name<span class="text-danger"> *</span></label> |
|
|
|
<div class="form-group col-sm-6 flex-column d-flex"> <label class="form-control-label">Full name<span class="text-danger"> *</span></label> |
|
|
|
<input type="text" id="fname" name="fname" placeholder="Enter your full name" onblur="validate(1)"> |
|
|
|
<input type="text" id="fname" name="fname" placeholder="Enter your full name" onblur="validate(1)" required> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="form-group col-sm-6 flex-column d-flex"> |
|
|
|
<div class="form-group col-sm-6 flex-column d-flex"> |
|
|
|
<label class="form-control-label">Email<span class="text-danger"> *</span></label> |
|
|
|
<label class="form-control-label">Email<span class="text-danger"> *</span></label> |
|
|
|
<input type="text" id="email" name="email" placeholder="Enter your email address" onblur="validate(2)"> |
|
|
|
<input type="text" id="email" name="email" placeholder="Enter your email address" onblur="validate(2)" required> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="row justify-content-between text-left"> |
|
|
|
<div class="row justify-content-between text-left"> |
|
|
|
<div class="form-group col-sm-6 flex-column d-flex"> <label class="form-control-label">Phone number<span class="text-danger"> *</span></label> |
|
|
|
<div class="form-group col-sm-6 flex-column d-flex"> <label class="form-control-label">Phone number<span class="text-danger"> *</span></label> |
|
|
|
<input type="text" id="mob" name="mobile" placeholder="Enter your phone number" onblur="validate(3)"> |
|
|
|
<input type="text" id="mob" name="mobile" placeholder="Enter your phone number" onblur="validate(3)" required> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="form-group col-sm-6 flex-column d-flex"> <label class="form-control-label">Job title<span class="text-danger"> *</span></label> |
|
|
|
<div class="form-group col-sm-6 flex-column d-flex"> <label class="form-control-label">Job title<span class="text-danger"> *</span></label> |
|
|
|
<input type="text" id="job" name="job_title" placeholder="Enter your job title" onblur="validate(4)"> |
|
|
|
<input type="text" id="job" name="job_title" placeholder="Enter your job title" onblur="validate(4)" required> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="row justify-content-between text-left"> |
|
|
|
<div class="row justify-content-between text-left"> |
|
|
|
<div class="form-group col-12 flex-column d-flex"> <label class="form-control-label">Have any queries?<span class="text-danger"> *</span></label> |
|
|
|
<div class="form-group col-12 flex-column d-flex"> <label class="form-control-label">Have any queries?<span class="text-danger"> *</span></label> |
|
|
|
<textarea rows="2" placeholder="Write your message here" id="message" name="message"onblur="validate(5)"></textarea> |
|
|
|
<textarea rows="2" placeholder="Write your message here" id="message" name="message"onblur="validate(5)" required></textarea> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="row justify-content-end"> |
|
|
|
<div class="row justify-content-end"> |
|
|
|