-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
75 lines (75 loc) · 3.36 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game Information</title>
<!--JQuery-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!--Bootstrap for Grid system and Responsiveness -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,600;1,500&display=swap" rel="stylesheet">
<script type="text/javascript" src="scripts/contact_script.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="navbar">
<ul>
<li><h2 class="logo">Game Hub</h2></li>
<li><a href="index.html">Home</a></li>
<li><a href="stats.html">Stats</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<br>
<!--Form structure and design by Harsha-->
<div class="container">
<div class="row">
<div class="col-lg-3"></div>
<div class="col-lg-6 contact-box">
<h1>Contact Us!</h1>
<form class="contact-form" onsubmit="return validator()">
<label for = "name" class="contact-color">Name</label>
<br>
<input type = "text" id="name" value="" placeholder=" John Smith"><span class = "incomplete-field" id="incomplete-field-name"></span>
<br>
<label for = "email" class="contact-color" >Email Address</label>
<br>
<input type="email" id="email" value="" placeholder=" [email protected]"><br><span class = "incomplete-field" id="incomplete-field-email"></span>
<br>
<label for = "phone" class="contact-color">Phone Number</label>
<br>
<input type="tel" id="phone" value="" placeholder=" +353 899844672"><br><span class = "incomplete-field" id="incomplete-field-phone"></span>
<br>
<label for="subject" class="contact-color">Subject</label>
<br>
<select id="subject">
<option value="none">Click to Select</option>
<option value="invalid-data">Report inaccurate data</option>
<option value="">Report bugs</option>
<option value="other-queries">Other Queries</option>
</select>
<span class = "incomplete-field" id="incomplete-field-subject"><br></span>
<br>
<label for = "msg" class="contact-color">Message</label>
<br>
<textarea id = "msg" rows="4" cols="40" placeholder=" Enter your message here..."></textarea>
<br>
<span class = "incomplete-field" id="incomplete-field-msg"><br></span>
<br>
<input type="checkbox" id="privacy" class="privacy-check">
<label for = "privacy" class="privacy-label"><span id="privacy-check">I understand and agree that any information I've provided can be internally stored and shared.</span></label>
<br>
<br>
<input type= "submit" id="submit-button">
<br><br>
</form>
</div>
<div class="col-lg-3"></div>
</div>
<br>
</div>
</body>
</html>