-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreviews.html
42 lines (36 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>User Reviews</title>
</head>
<link rel="stylesheet" href="styles.css">
<body>
<section class="section-book">
<div class="row">
<div class="book">
<div class="book-form">
<form action="userData.php" method="post" class="form">
<div class="margin-8">
<h2 class="heading-secondary">
Write your Review here
</h2>
<div class="form-group">
<input type="text" class="form-input" name="name" placeholder="Name" id="email" required>
<label for="name" class="form-label">Name</label>
</div>
<div class="form-group">
<input type="text" class="form-input" placeholder="Review" name="review" id="review">
<label for="name" class="form-label">Review</label>
</div>
</div>
<div class="u-center-text form-group">
<button class="btn btn-green">Next step →</button>
</div>
</form>
</div>
</div>
</div>
</section>
</body>
</html>