-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
151 lines (122 loc) · 4.23 KB
/
index.html
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon-32x32.png">
<link rel="stylesheet" href="styles/index.css">
<script defer src="scripts/index.js"></script>
<title>Frontend Mentor | Contact form</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
</style>
</head>
<body>
<!-- Contact Us
First Name
This field is required
Last Name
This field is required
Email Address
Please enter a valid email address
This field is required
Query Type
General Enquiry
Support Request
Please select a query type
Message
This field is required
I consent to being contacted by the team
To submit this form, please consent to being contacted
Submit
Message Sent!
Thanks for completing the form. We'll be in touch soon!
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</div>
-->
<div class="toast" id="toast">
<span>
<img src="assets/images/icon-success-check.svg">
<h4>
Message Sent!
</h4>
</span>
<p>
Thanks for completing the form. We'll be in touch soon!
</p>
</div>
<main>
<div class="title">Contact Us</div>
<form>
<div class="form-row">
<div class="row-h">
<div class="item">
<span class="row-label">First Name <span class="astrix">*</span></span>
<input type="text" name="first_name" id="first_name" class="hov text-input">
<span class="form-error" id="error_first_name"></span>
</div>
<div class="item">
<span class="row-label">Last Name <span class="astrix">*</span></span>
<input type="text" name="last_name" id="last_name" class="hov text-input">
<span class="form-error" id="error_last_name"></span>
</div>
</div>
</div>
<div class="form-row">
<div class="row-h">
<div class="item">
<span class="row-label">Email Address <span class="astrix">*</span></span>
<input type="text" name="email" id="email" class="hov text-input">
<span class="form-error" id="error_email"></span>
</div>
</div>
</div>
<div class="form-row">
<span class="row-label">Query Type <span class="astrix">*</span></span>
<div class="row-h">
<div class="radio-item" id="GE">
<input type="radio" name="query_type" id="query_type_ge" class="radio-input" value="General Enquiry">
<span class="radio-label">General Enquiry</span>
</div>
<div class="radio-item" id="SR">
<input type="radio" name="query_type" id="query_type_sr" class="radio-input" value="General Enquiry">
<span class="radio-label">Support Request</span>
</div>
</div>
<span class="form-error" id="error_query_type"></span>
</div>
<div class="form-row">
<div class="row-h">
<div class="item">
<span class="row-label">Message <span class="astrix">*</span></span>
<textarea name="message" id="message" class="hov textarea-input" rows="4"></textarea>
<span class="form-error" id="error_message"></span>
</div>
</div>
</div>
<div class="form-row">
<div class="row-h-consent">
<input type="checkbox" name="consent" id="consent" class="hov checkbox-input" value="1">
<span class="checkbox-label">I consent to being contacted by the team <span class="astrix">*</span></span>
</div>
<span class="form-error" id="error_consent"></span>
</div>
<div class="form-row">
<div class="row-h">
<input type="button" value="Submit" class="submit-btn" onclick="handleSubmit()">
</div>
</div>
</form>
</main>
</body>
</html>