Spaces:
Running
Running
Create a website for my school payment
Browse files- index.html +8 -5
- payment.html +35 -0
index.html
CHANGED
|
@@ -3,17 +3,20 @@
|
|
| 3 |
<head>
|
| 4 |
<meta charset="utf-8" />
|
| 5 |
<meta name="viewport" content="width=device-width" />
|
| 6 |
-
<title>
|
| 7 |
-
|
| 8 |
</head>
|
| 9 |
<body>
|
| 10 |
<div class="card">
|
| 11 |
-
<h1>Welcome to
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
| 13 |
<p>
|
| 14 |
Also don't forget to check the
|
| 15 |
<a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
|
| 16 |
</p>
|
| 17 |
-
|
| 18 |
</body>
|
| 19 |
</html>
|
|
|
|
| 3 |
<head>
|
| 4 |
<meta charset="utf-8" />
|
| 5 |
<meta name="viewport" content="width=device-width" />
|
| 6 |
+
<title>Our School Portal</title>
|
| 7 |
+
<link rel="stylesheet" href="style.css" />
|
| 8 |
</head>
|
| 9 |
<body>
|
| 10 |
<div class="card">
|
| 11 |
+
<h1>Welcome to Our School Portal</h1>
|
| 12 |
+
<p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
|
| 13 |
+
<p>
|
| 14 |
+
<a href="payment.html" class="payment-link">Make a School Payment</a>
|
| 15 |
+
</p>
|
| 16 |
<p>
|
| 17 |
Also don't forget to check the
|
| 18 |
<a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
|
| 19 |
</p>
|
| 20 |
+
</div>
|
| 21 |
</body>
|
| 22 |
</html>
|
payment.html
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!doctype html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="utf-8" />
|
| 5 |
+
<meta name="viewport" content="width=device-width" />
|
| 6 |
+
<title>School Payment Portal</title>
|
| 7 |
+
<link rel="stylesheet" href="style.css" />
|
| 8 |
+
</head>
|
| 9 |
+
<body>
|
| 10 |
+
<div class="card">
|
| 11 |
+
<h1>School Payment Portal</h1>
|
| 12 |
+
<form>
|
| 13 |
+
<div class="form-group">
|
| 14 |
+
<label for="student-id">Student ID</label>
|
| 15 |
+
<input type="text" id="student-id" required>
|
| 16 |
+
</div>
|
| 17 |
+
<div class="form-group">
|
| 18 |
+
<label for="amount">Payment Amount ($)</label>
|
| 19 |
+
<input type="number" id="amount" min="1" required>
|
| 20 |
+
</div>
|
| 21 |
+
<div class="form-group">
|
| 22 |
+
<label for="payment-method">Payment Method</label>
|
| 23 |
+
<select id="payment-method" required>
|
| 24 |
+
<option value="">Select method</option>
|
| 25 |
+
<option value="credit">Credit Card</option>
|
| 26 |
+
<option value="debit">Debit Card</option>
|
| 27 |
+
<option value="bank">Bank Transfer</option>
|
| 28 |
+
</select>
|
| 29 |
+
</div>
|
| 30 |
+
<button type="submit" class="pay-button">Make Payment</button>
|
| 31 |
+
</form>
|
| 32 |
+
<p><a href="index.html">Back to Home</a></p>
|
| 33 |
+
</div>
|
| 34 |
+
</body>
|
| 35 |
+
</html>
|