-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
50 lines (48 loc) · 2.04 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="assets/css/contact.css">
</head>
<body>
<form class="small-text">
<h1>Contact</h1>
<div class="form-group">
<label for="Name">Name</label>
<input type="text" class="form-control" id="forName" placeholder="Your Name" required>
</div>
<div class="form-group">
<label for="Email">Email</label>
<input type="email" class="form-control" id="forEmail" aria-describedby="emailHelp" placeholder="Enter Email" required>
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-group">
<label for="Subject">Subject</label>
<input type="text" class="form-control" id="forSubject" placeholder="Enter Subject" required>
</div>
<div class="form-group">
<label for="Message">Your Message</label>
<textarea class="form-control" id="forMessage" rows="3" required></textarea>
</div>
<div class="form-group">
<label for="Phone">Your Phone Number</label>
<input type="text" class="form-control" id="forPhone" placeholder="Enter Phone" required>
</div>
<button id="submitEmail" type="submit" class="btn btn-primary float-right">Submit</button>
</form>
<div id="submit-details" class="modal">
<div class="modal-content">
<div class="modal-header">
<span class="close">×</span>
<h2 id="submit-data-header"></h2>
</div>
<div class="modal-body">
<p id="submit-data">
</p>
</div>
<div class="modal-footer">
</div>
</div>
</div>
<script src="assets/js/contact.js"></script>
</body>
</html>