-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
116 lines (100 loc) · 5.13 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="css/main.css" rel="stylesheet" media="screen">
<title>Building your own PC</title>
<style>
.buildCheckboxes {
display: inline-flex;
}
.buildCheckboxes input,
.buildCheckboxes label {
padding-left: 10px;
padding-right: 10px;
padding-bottom: 5px;
}
</style>
</head>
<body>
<script src="https://code.jquery.com/jquery.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<div class="container-narrow">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<li class="dropdown">
<a class="dropbtn" href="index.html">Home
<i class="fa fa-caret-down"></i>
</a>
<div class="dropdown-content">
<a href="parts.html">Parts</a>
<a href="https://www.youtube.com/watch?v=QtBDL8EiNZo">About</a>
<a href="contact.html">Contact</a>
</div>
</li>
<li><a href="parts.html">Parts</a></li>
<li><a href="https://www.youtube.com/watch?v=QtBDL8EiNZo">About</a></li>
<li class="active"><a href="#">Contact</a></li>
</ul>
<h3 class="muted" style="color: black;">Project Help Build PC</h3>
</div>
<hr>
<div class="jumbotron">
<h1>Contacts</h1>
<p class="lead">Want to ask a question? Want us to help you build a computer? Fill out the form(s) below!</p>
</div>
<hr>
<div class="row-fluid marketing">
<div class="span12">
<h2 style="text-align: center;padding-bottom: 30px;">Ask a question!</h2>
<form id="questionForm" style="text-align: center; " onsubmit="return false">
<label for="fname">First name:</label>
<input type="text" id="questionFName" name="fname" required>
<label for="lname">Last name:</label>
<input type="text" id="questionLName" name="lname" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" pattern="^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$" required>
<label for="question">Question:</label>
<textarea style="width: 400px;" rows="5" cols="60" name="quesiton" placeholder="Input you're question here..." required></textarea><br>
<button id="submitButton" class="btn btn-primary" type="submit">Send</button><br><br>
<i>**It may take up to 24 hours - never, to receive a reply</i>
</form>
</div>
</div>
<hr>
<div class="row-fluid marketing">
<div class="span12">
<h2 style="text-align: center;padding-bottom: 30px;">Looking for a PC Build Reccomendation?</h2>
<form id="buildForm" style="text-align: center; " onsubmit="return false">
<label for="fname">First name:</label>
<input type="text" id="questionFName" name="fname" required>
<label for="lname">Last name:</label>
<input type="text" id="questionLName" name="lname" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" pattern="^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$" required>
<h5>How will you be using this build?</h5>
<div class="buildCheckboxes">
<input type="checkbox" id="work" name="work" value="Work"><label for="work">Work</label>
<input type="checkbox" id="personal" name="personal" value="Personal"><label for="personal">Personal</label>
<input type="checkbox" id="gaming" name="gaming" value="Gaming"><label for="gaming">Gaming</label>
</div>
<br>
<label style="display: inline-flex;" for="budget">Budget: $</label>
<input style="width: 100px;" type="number" min="200.00" step="0.01" max="5000.00" value="1000" name="budget" required/>
<br>
<button id="submitButton" class="btn btn-primary" type="submit">Send</button><br><br>
<i>**It may take up to 24 hours - never, to receive a reply</i>
</form>
</div>
</div>
<hr>
<div class="footer">
<p>© Some Computer Company Thats Definitely Copyrighted 2021</p>
</div>
<script src="script/forms.js"></script>
</div>
</body>
</html>