-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreviews.html
84 lines (84 loc) · 2.98 KB
/
reviews.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Reviews — Aiwa</title>
<link rel="stylesheet" href="assets/styles/normalize.css">
<link rel="stylesheet" href="assets/styles/style.css">
</head>
<body>
<!-- Header-->
<header>
<div class="container">
<div class="logo"><a href="/" title="Go Home"><img src="assets/images/logo.png" alt="Aiwa"></a></div>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="buy.html">The CS-M1</a></li>
<li><a href="reviews.html" class="active">Reviews</a></li>
<li><a href="support.html">Support</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</div>
</header>
<div class="container">
<form action="form-handler.php" method="post" class="form-review">
<h1>Add your review</h1>
<!-- Customer info-->
<fieldset>
<legend>Customer</legend>
<!-- Name-->
<label for="form-name">Your Name</label>
<input id="form-name" type="text" name="name" placeholder="Your name" required>
<!-- Email-->
<label for="form-email">Your Email</label>
<input id="form-email" type="email" name="email" placeholder="[email protected]" required>
</fieldset>
<!-- Rank-->
<fieldset>
<legend>Rate the product</legend>
<!-- 1-->
<div class="review-rate">
<label for="form-mark-1">1</label>
<input id="form-mark-1" type="radio" name="mark" value="1">
</div>
<!-- 2-->
<div class="review-rate">
<label for="form-mark-2">2</label>
<input id="form-mark-2" type="radio" name="mark" value="2">
</div>
<!-- 3-->
<div class="review-rate">
<label for="form-mark-3">3</label>
<input id="form-mark-3" type="radio" name="mark" value="3">
</div>
<!-- 4-->
<div class="review-rate">
<label for="form-mark-4">4</label>
<input id="form-mark-4" type="radio" name="mark" value="4">
</div>
<!-- 5-->
<div class="review-rate">
<label for="form-mark-5">5</label>
<input id="form-mark-5" type="radio" name="mark" value="5">
</div>
</fieldset>
<!-- Review text-->
<fieldset>
<legend>Write a review</legend>
<textarea name="review" placeholder="Start typing..." required></textarea>
</fieldset>
<!-- Submit-->
<input type="submit" value="Submit">
</form>
</div>
<footer>
<div class="container">
<p>Designed and coded by Ernest Iliiasov #200336022 for COMP1002 class.</p>
<p>Photos by <a href="http://thngs.co">thngs.co</a>. Icons by <a href="http://icons8.com">Icons8.com</a>.</p>
</div>
</footer>
<script src="assets/scripts/main.js"></script>
</body>
</html>