File size: 1,065 Bytes
c1862c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!doctype html>
<html>
	<head>
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width" />
		<title>School Payment Portal</title>
		<link rel="stylesheet" href="style.css" />
	</head>
	<body>
		<div class="card">
			<h1>School Payment Portal</h1>
			<form>
				<div class="form-group">
					<label for="student-id">Student ID</label>
					<input type="text" id="student-id" required>
				</div>
				<div class="form-group">
					<label for="amount">Payment Amount ($)</label>
					<input type="number" id="amount" min="1" required>
				</div>
				<div class="form-group">
					<label for="payment-method">Payment Method</label>
					<select id="payment-method" required>
						<option value="">Select method</option>
						<option value="credit">Credit Card</option>
						<option value="debit">Debit Card</option>
						<option value="bank">Bank Transfer</option>
					</select>
				</div>
				<button type="submit" class="pay-button">Make Payment</button>
			</form>
			<p><a href="index.html">Back to Home</a></p>
		</div>
	</body>
</html>