|
@@ -21,20 +21,24 @@ page-libs: [litepicker]
|
|
|
<form class="space-y">
|
|
|
<div class="row">
|
|
|
<div class="col-6">
|
|
|
- <input type="text" placeholder="Name" class="form-control" />
|
|
|
+ <label class="form-label visually-hidden" for="basic-name">Name</label>
|
|
|
+ <input type="text" placeholder="Name" class="form-control" id="basic-name" name="name" />
|
|
|
</div>
|
|
|
|
|
|
<div class="col-6">
|
|
|
- <input type="email" placeholder="Email address" class="form-control" />
|
|
|
+ <label class="form-label visually-hidden" for="basic-email">Email address</label>
|
|
|
+ <input type="email" placeholder="Email address" class="form-control" id="basic-email" name="email" />
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
- <input type="password" placeholder="Password" class="form-control" />
|
|
|
+ <label class="form-label visually-hidden" for="basic-password">Password</label>
|
|
|
+ <input type="password" placeholder="Password" class="form-control" id="basic-password" name="password" />
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
- <input type="password" placeholder="Confirm Password" class="form-control" />
|
|
|
+ <label class="form-label visually-hidden" for="basic-password-confirm">Confirm Password</label>
|
|
|
+ <input type="password" placeholder="Confirm Password" class="form-control" id="basic-password-confirm" name="password_confirm" />
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
@@ -55,31 +59,31 @@ page-libs: [litepicker]
|
|
|
<form>
|
|
|
<div class="space-y">
|
|
|
<div>
|
|
|
- <label class="form-label">
|
|
|
+ <label class="form-label" for="example-first-name">
|
|
|
First Name
|
|
|
</label>
|
|
|
- <input type="text" placeholder="Enter first name" class="form-control">
|
|
|
+ <input type="text" placeholder="Enter first name" class="form-control" id="example-first-name" name="first_name">
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
- <label class="form-label">
|
|
|
+ <label class="form-label" for="example-last-name">
|
|
|
Last Name
|
|
|
</label>
|
|
|
- <input type="text" placeholder="Enter last name" class="form-control">
|
|
|
+ <input type="text" placeholder="Enter last name" class="form-control" id="example-last-name" name="last_name">
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
- <label class="form-label">
|
|
|
+ <label class="form-label" for="example-email">
|
|
|
Email
|
|
|
</label>
|
|
|
- <input type="email" placeholder="Enter email address" class="form-control">
|
|
|
+ <input type="email" placeholder="Enter email address" class="form-control" id="example-email" name="email">
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
- <label class="form-label">
|
|
|
+ <label class="form-label" for="example-subject">
|
|
|
Select Subject
|
|
|
</label>
|
|
|
- <select class="form-select">
|
|
|
+ <select class="form-select" id="example-subject" name="subject">
|
|
|
<option>
|
|
|
Option 1
|
|
|
</option>
|
|
@@ -96,10 +100,10 @@ page-libs: [litepicker]
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
- <label class="form-label">
|
|
|
+ <label class="form-label" for="example-message">
|
|
|
Message
|
|
|
</label>
|
|
|
- <textarea placeholder="Enter your message" rows="6" class="form-control"></textarea>
|
|
|
+ <textarea placeholder="Enter your message" rows="6" class="form-control" id="example-message" name="message"></textarea>
|
|
|
</div>
|
|
|
|
|
|
<div>
|