input field correction updated
This commit is contained in:
parent
57f2966547
commit
e6b2375529
@ -329,7 +329,7 @@ function ChatForm({ onClose }) {
|
|||||||
placeholder="Name"
|
placeholder="Name"
|
||||||
value={formData.username}
|
value={formData.username}
|
||||||
onChange={handleChange}
|
onChange={handleChange}
|
||||||
className="form-control mb-2"
|
className="form-control mt-2 chat-form"
|
||||||
/>
|
/>
|
||||||
{formErrors.username && <small className="text-danger">{formErrors.username}</small>}
|
{formErrors.username && <small className="text-danger">{formErrors.username}</small>}
|
||||||
|
|
||||||
@ -349,7 +349,7 @@ function ChatForm({ onClose }) {
|
|||||||
placeholder="Phone"
|
placeholder="Phone"
|
||||||
value={formData.phone}
|
value={formData.phone}
|
||||||
onChange={handleChange}
|
onChange={handleChange}
|
||||||
className="form-control mb-2"
|
className="form-control mt-3 chat-form"
|
||||||
/>
|
/>
|
||||||
{formErrors.phone && <small className="text-danger">{formErrors.phone}</small>}
|
{formErrors.phone && <small className="text-danger">{formErrors.phone}</small>}
|
||||||
|
|
||||||
@ -359,7 +359,7 @@ function ChatForm({ onClose }) {
|
|||||||
placeholder="Your Email"
|
placeholder="Your Email"
|
||||||
value={formData.email}
|
value={formData.email}
|
||||||
onChange={handleChange}
|
onChange={handleChange}
|
||||||
className="form-control mb-2"
|
className="form-control mt-3 chat-form"
|
||||||
/>
|
/>
|
||||||
{formErrors.email && <small className="text-danger">{formErrors.email}</small>}
|
{formErrors.email && <small className="text-danger">{formErrors.email}</small>}
|
||||||
|
|
||||||
@ -367,7 +367,7 @@ function ChatForm({ onClose }) {
|
|||||||
name="service"
|
name="service"
|
||||||
value={formData.service}
|
value={formData.service}
|
||||||
onChange={handleChange}
|
onChange={handleChange}
|
||||||
className="form-control mb-2"
|
className="form-control mt-3 chat-form"
|
||||||
>
|
>
|
||||||
<option value="">Select Service</option>
|
<option value="">Select Service</option>
|
||||||
<option value="Physio">Physio</option>
|
<option value="Physio">Physio</option>
|
||||||
@ -384,11 +384,11 @@ function ChatForm({ onClose }) {
|
|||||||
placeholder="Message"
|
placeholder="Message"
|
||||||
value={formData.message}
|
value={formData.message}
|
||||||
onChange={handleChange}
|
onChange={handleChange}
|
||||||
className="form-control mb-2"
|
className="form-control mt-3"
|
||||||
></textarea>
|
></textarea>
|
||||||
{formErrors.message && <small className="text-danger">{formErrors.message}</small>}
|
{formErrors.message && <small className="text-danger">{formErrors.message}</small>}
|
||||||
|
|
||||||
<div className="mb-2">
|
<div className="mt-3">
|
||||||
<ReCAPTCHA
|
<ReCAPTCHA
|
||||||
sitekey="6Lckq9MrAAAAABjBD9rQYm19BMGFFWiwb9mPiw2K"
|
sitekey="6Lckq9MrAAAAABjBD9rQYm19BMGFFWiwb9mPiw2K"
|
||||||
onChange={handleCaptchaChange}
|
onChange={handleCaptchaChange}
|
||||||
|
|||||||
@ -3901,4 +3901,8 @@
|
|||||||
margin-bottom: 17px;
|
margin-bottom: 17px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
.chat-form {
|
||||||
|
width: 100%;
|
||||||
|
height: 46px;
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user