-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreview.html
More file actions
92 lines (69 loc) · 1.93 KB
/
Copy pathreview.html
File metadata and controls
92 lines (69 loc) · 1.93 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Review Request</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="header-placeholder"></div>
<div class="container">
<div class="top-bar">
<span class="back-arrow" onclick="window.location.href='upload.html'">←</span>
<div class="top-text">
<h3>Review & Submit</h3>
<p>Step 4 of 5</p>
</div>
</div>
<div class="progress-bar">
<div class="step active"></div>
<div class="step active"></div>
<div class="step active"></div>
<div class="step active"></div>
<div class="step"></div>
</div>
<h2>Review Your Request</h2>
<div id="summary" class="summary-card">
<div class="review-grid">
<!-- LEFT COLUMN -->
<div class="review-col">
<div class="summary-section">
<h3>Request Information</h3>
<div id="requestInfo"></div>
</div>
<div class="summary-section">
<h3>Student Details</h3>
<div id="studentDetails"></div>
</div>
</div>
<!-- RIGHT COLUMN -->
<div class="review-col">
<div class="summary-section">
<h3>Delivery Method</h3>
<div id="deliveryInfo"></div>
</div>
<div class="summary-section">
<h3>Payment Details</h3>
<div id="paymentInfo"></div>
</div>
<div class="summary-section">
<h3>Proof of Payment</h3>
<div id="uploadInfo"></div>
</div>
</div>
</div>
</div>
<br>
<div class="submit-row">
<button id="submitBtn" class="primary-btn" type="button">
Submit Request
</button>
</div>
<p id="successMessage" class="success-message">
✅ Your request has been submitted successfully.
</p>
</div>
<script src="script.js"></script>
</body>
</html>