26 lines
822 B
HTML
26 lines
822 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Make a Payment</title>
|
|
</head>
|
|
<body>
|
|
<h1>Make a Payment</h1>
|
|
<form action="/process-payment" method="post">
|
|
<label for="amount">Amount:</label>
|
|
<input type="number" id="amount" name="amount" step="0.01" required>
|
|
|
|
<label for="payment_method">Payment Method:</label>
|
|
<select id="payment_method" name="payment_method" required>
|
|
<option value="Credit Card">Credit Card</option>
|
|
<option value="Debit Card">Debit Card</option>
|
|
<option value="PayPal">PayPal</option>
|
|
<option value="Bank Transfer">Bank Transfer</option>
|
|
<option value="Cash">Cash</option>
|
|
</select>
|
|
|
|
<button type="submit">Pay Now</button>
|
|
</form>
|
|
</body>
|
|
</html>
|