-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVerificationForm.vue
58 lines (58 loc) · 1.56 KB
/
VerificationForm.vue
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<template>
<form>
<!-- Name -->
<div class="field">
<label class="label is-medium">Name</label>
<div class="control has-icons-left">
<input class="input is-medium" type="text" placeholder="John Smith" />
<span class="icon is-small is-left">
<font-awesome-icon icon="user" />
</span>
</div>
</div>
<!-- Email -->
<div class="field">
<label class="label is-medium">Email</label>
<div class="control has-icons-left">
<input
class="input is-medium"
type="email"
placeholder="you@email.com"
/>
<span class="icon is-small is-left">
<font-awesome-icon icon="envelope" />
</span>
</div>
</div>
<!-- Subject -->
<div class="field">
<label class="label is-medium">Subject</label>
<div class="control has-icons-left">
<input
class="input is-medium"
type="text"
placeholder="Brief Summary"
/>
<span class="icon is-small is-left">
<font-awesome-icon icon="briefcase" />
</span>
</div>
</div>
<!-- Message -->
<div class="field">
<label class="label is-medium">Message</label>
<div class="control">
<textarea
class="textarea"
placeholder="Detailed description of your comment, request, etc"
rows="8"
></textarea>
</div>
</div>
<div class="control">
<button class="button is-primary">
Contact Us
</button>
</div>
</form>
</template>