-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback.html
170 lines (139 loc) · 6.1 KB
/
feedback.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
<html>
<head>
<title>
Feedback
</title>
<link rel="stylesheet" href="css/stylesheet.css">
</head>
<body>
<header>
<!--Navbar at the top of the page-->
<div class="nav">
<ul class="nav_links">
<li class="list">
<a href="index.html">
<span class=icon>
<img width="100px" src="Images\logo.jpg">
</span>
<span class=text>Home</span>
</a>
</li>
<li class="list">
<a href="marketplace.html">
<span class=icon>
<img width="30px" src="Images\marketplace_icon.svg">
</span>
<span class=text>Marketplace</span>
</a>
</li>
<li class="list">
<a href="account.php">
<span class=icon>
<img width="30px" src="Images\hockey_player_icon.svg">
</span>
<span class=text>My Account</span>
</a>
</li>
<li class="list">
<a href="#popup2">
<span class=icon>
<img width="30px" src="Images\hockey_puck_icon.svg">
</span>
<span class=text>Sign In</span>
</a>
</li>
<li class="list">
<a href="#popup1">
<span class=icon>
<img width="30px" src="Images\register.svg">
</span>
<span class=text>Sign Up</span>
</a>
</li>
</ul>
</div>
</header>
<!--Form to submit feedback-->
<h2 class="formDivH2">Submit Feedback</h2>
<div class="formDiv">
<form action "mailto:[email protected]": method="post" enctype="text/plain">
<label for="fname">Name: </label>
<input type="text" id="fname" name="fname" placeholder="Full Name"><br>
<label for="email">Email: </label>
<input type="text" id="email" name="email" placeholder="Email">
<p><label for="feedback">Feedback</label></p>
<textarea id="feedback" name="feedback" row="5" cols="50" placeholder="Add your feedback here."></textarea><br>
<button type="submit">Send Feedback</button>
</form>
</div>
<hr class="footerHR">
<!--Footer links-->
<footer>
<ul class="footerLinks">
<li>
<a href="TaC.html">
<span class="text">Terms and Conditions</span>
</a>
</li>
<li>
<h3>Newsletter</h3>
<form>
<input type="email" class="newsletter" placeholder="Join our newsletter" required><br>
<button type="submit">Join</button>
</form>
</li>
<li>
<a href="feedback.html">
<span class="text">Feedback</span>
</a>
</li>
</ul>
</footer>
<!--Sign up Modal-->
<div class="overlay" id="popup1">
<div class="popup">
<a class="close" href="#">×</a>
<div class="content">
<form action="signup_action.php" method="post">
<div class="imgcontainer">
<img src="Images\resizedHockeySil.jpg" alt="Silhouette of a hockey player" width="150" />
</div>
<h1>Sign up</h1>
<p>Please fill out your details below</p>
<br>
<div class="inputs">
<input type="text" class="user_inputs" placeholder="Username" name="username" required><br>
<input type="email" class="user_inputs" placeholder="Email" name="email" required><br>
<input type="password" class="user_inputs" placeholder="Password" name="pass" required><br>
<input type="password" class="user_inputs" placeholder="Confirm Password" name="passConfirm" required><br>
</div>
<button type="submit" class="modal_button" name="signup">Sign Up</button>
</form>
</div>
</div>
</div>
<!--Sign in Modal-->
<div class="overlay" id="popup2">
<div class="popup">
<a class="close" href="#">×</a>
<div class="content">
<form action="login_action.php" method="post">
<div class="imgcontainer">
<img src="Images\resizedHockeySil.jpg" alt="Silhouette of a hockey player" width="150" />
</div>
<h1>Sign In</h1>
<p>Please fill out your details below</p>
<br>
<input type="text" class="user_inputs" placeholder="Username" name="username" required><br>
<input type="password" class="user_inputs" placeholder="Password" name="pass" required><br>
<button type="submit" class="modal_button" name="signIn">Sign In</button>
<br>
<div class="forgot">
<a href="forgotPassword.html"><button>Forgot Password</button></a>
</div>
</form>
</div>
</div>
</div>
</body>
</html>