-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreview.html
More file actions
30 lines (26 loc) · 819 Bytes
/
Copy pathreview.html
File metadata and controls
30 lines (26 loc) · 819 Bytes
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Review Confirmation</title>
<link rel="stylesheet" href="styles/form.css">
<script src="scripts/review.js" defer></script>
</head>
<body>
<header>
<h1>Thank You!</h1>
</header>
<main>
<div class="confirmation-message">
<p>Your product review has been successfully submitted.</p>
<p>Total reviews submitted: <span id="submission-count">0</span></p>
<a href="form.html" class="btn">Submit another review</a>
</div>
</main>
<footer>
<p>© <span id="currentyear"></span> | Your Name | Location</p>
<p id="lastModified"></p>
</footer>
</body>
</html>