-
Notifications
You must be signed in to change notification settings - Fork 0
/
typical-form-elements.php
26 lines (26 loc) · 1023 Bytes
/
typical-form-elements.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<form>
<p class="form__fieldgroup required">
<label class="fieldgroup__label" for="fname"><span class="is-required">* </span>First Name</label>
<input type="text" id="fname" />
</p>
<p class="form__fieldgroup required">
<label class="fieldgroup__label" for="lname"><span class="is-required">* </span>Last Name</label>
<input type="text" id="lname" />
</p>
<p class="form__fieldgroup required">
<label class="fieldgroup__label" for="cname"><span class="is-required">* </span>Company Name</label>
<input type="text" id="cname" />
</p>
<p class="form__fieldgroup required">
<label class="fieldgroup__label" for="email"><span class="is-required">* </span>Company Email</label>
<input type="email" id="email" />
</p>
<p class="form__fieldgroup">
<label class="fieldgroup__label" for="phone"><span class="is-required">* </span>Phone</label>
<input type="text" id="phone" />
</p>
<!-- Submit it -->
<p class="form_fieldgroup">
<input class="button" type="submit" value="Set it up!">
</p>
</form>