generated from goitacademy/vanilla-app-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c79f1fe
commit cfcec76
Showing
1 changed file
with
12 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,14 +17,14 @@ | |
<div class="modal-help-form-item-container"> | ||
<label | ||
class="modal-help-form-input-label visually-hidden" | ||
for="user-name" | ||
for="user-name-modal" | ||
>Full Name</label | ||
> | ||
<input | ||
class="modal-help-form-input" | ||
type="text" | ||
name="user-name" | ||
id="user-name" | ||
name="user-name-modal" | ||
id="user-name-modal" | ||
required | ||
autofocus | ||
pattern="[a-zA-Zа-яА-яіІїЇєЄґҐʼ]+" | ||
|
@@ -35,14 +35,14 @@ | |
<div class="modal-help-form-item-container"> | ||
<label | ||
class="modal-help-form-input-label visually-hidden" | ||
for="user-phone" | ||
for="user-phone-modal" | ||
>Phone number</label | ||
> | ||
<input | ||
class="modal-help-form-input" | ||
type="tel" | ||
name="user-phone" | ||
id="user-phone" | ||
name="user-phone-modal" | ||
id="user-phone-modal" | ||
required | ||
pattern="[0-9]{3}-[0-9]{3}-[0-9]{2}-[0-9]{2}" | ||
title="xxx-xxx-xx-xx" | ||
|
@@ -52,29 +52,28 @@ | |
<div class="modal-help-form-item-container"> | ||
<label | ||
class="modal-help-form-input-label visually-hidden" | ||
for="user-email" | ||
for="user-email-modal" | ||
>Email</label | ||
> | ||
<input | ||
class="modal-help-form-input" | ||
type="email" | ||
name="user-email" | ||
id="user-email" | ||
name="user-email-modal" | ||
id="user-email-modal" | ||
required | ||
title="[email protected]" | ||
placeholder="Email" | ||
/> | ||
</div> | ||
<div class="modal-help-form-item-container"> | ||
<label | ||
class="modal-help-form-input-label visually-hidden" | ||
for="user-comment" | ||
for="user-comment-modal" | ||
>Your question</label | ||
> | ||
<textarea | ||
class="modal-help-form-comment" | ||
id="user-comment" | ||
name="user-comment" | ||
id="user-comment-modal" | ||
name="user-comment-modal" | ||
placeholder="Your question" | ||
></textarea> | ||
</div> | ||
|