-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactUs.html
249 lines (197 loc) · 5.43 KB
/
contactUs.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
<html>
<head>
<title>Contact Us: Spa Envy</title>
<script>
function validateForm(event) {
event.preventDefault();
var email = document.forms["myForm"]["mail"].value;
var phone = document.forms["myForm"]["usrtel"].value;
if (validateEmail(email)) {
if (phonenumber(phone)) {
if (validatebox()) {
//If all tests pass, confirm submission
alert("The form was submitted");
document.forms['myForm'].submit();
return true;
}
}
}
else {
return false;
}
}
function phonenumber(phone)
{
var correctPhone = /^(\+0?1\s)?\(?\d{3}\)?[\s.-]\d{3}[\s.-]\d{4}$/;
if(phone.match(correctPhone)) {
return true;
}
else {
alert("Please enter a valid U.S. Telephone Number in the form ###-###-####!");
return false;
}
}
function validatebox() {
if (document.getElementById("General").checked || document.getElementById("Services").checked) {
return true;
} else {
alert("Please check a checkbox!");
return false;
}
}
function validateEmail(email) {
if ( /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(email) ){
return true;
}else{
alert("Please enter a valid e-mail address");
return false;
}
}
//function pageReady(){
// btn.addEventListener("click",handleClick);
//}
/*function handleClick() {
if (validateForm()) {
alert("Form is validated!");
return true;
}
else {
return false;
}
}*/
// window.addEventListener("load",pageReady() );
</script>
</head>
<html>
<head>
<title>Contact US</title>
</head>
<style type="text/css">
<!--
#menu ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
width: 900px;
}
#menu li {
list-style-type: none;
display: inline;
float: left;
}
#menu a:link, a:visited {
display: block;
width: 135px;
font-weight: bold;
color: #FFFFFF;
background-color: #0033CC;
text-align: center;
padding: 4px;
text-decoration: none;
text-transform: uppercase;
}
a:hover, a:active {
background-color: #7A991A;
}
form{
margin: 0;
width: 430px;
padding: 1em;
border: 8px solid #990000;
border-radius: 1em;
}
form div + div {
margin-top: .5em;
}
label {
display: inline-block;
width: 90px;
text-align: right;
}
input, textarea {
font: 1em sans-serif;
width: 300px;
-moz-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid #00CCFF;
}
input[type=checkbox] {
font: 1em sans-serif;
width: 50px;
-moz-box-sizing: border-box;
box-sizing: border-box;
border: 0px solid #00CCFF;
}
input:focus, textarea:focus {
border-color: #000;
}
textarea {
vertical-align: top;
height: 5em;
resize: vertical;
}
.botton{
padding-left: 90px;
}
button{
margin-left: .5em;
}
</style>
<body>
<!-- Menu-->
<div id="menu">
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="reviews.php">Reviews</a></li>
<li><a href="contactUs.html">Contact Us</a></li>
</ul>
</div>
</br>
<form name="myForm" action="contactUs.php" onsubmit = "event.preventDefault; return validateForm(event);" method="post">
<fieldset>
<legend>Please enter your contact information in fields below:</legend>
<br><br>
<!--First Name - no numbers, required-->
<div>
<label for="name">First Name:</label>
<input type="text" id="fname" name="fname" value="" placeholder="Enter Your First Name..." required/>
</div>
<!--Last Name - no numbers, required-->
<div>
<label for="name">Last Name:</label>
<input type="text" id="lname" name="lname" value="" placeholder="Enter Your Last Name..." required/>
</div>
<!--E-mail - must be valid, required-->
<div>
<label for="mail">E-mail:</label>
<input type="email" id="mail" name="mail" value="" placeholder="E-mail..." required/>
</div>
<!--Phone - Allow for country code and dashes, required-->
<div>
<label for="telephone">Phone Number:</label>
<input type="tel" id="usrtel" name="usrtel" value="" placeholder="Phone Number..." required/>
</div>
<br><br>
<legend>Select One:</legend>
<input type="checkbox" id="General" value="General">General Questions<br>
<input type="checkbox" id="Services" value="Service">Inquire About Services<br>
<br><br>
<!--Message, required-->
<div>
<label for="msg">Message:</label>
<textarea id="msg" name="msg" required></textarea>
</div>
<br><br>
<div>
<div class="button">
<button type="submit" id="btn">SEND MESSAGE</button>
</div>
<div class="button">
<button type="reset">RESET FORM</button>
</div>
</fieldset>
</form>
</body>
</html>