Files
FOFTickets/views/opencamping.ejs

22 lines
774 B
Plaintext
Raw Permalink Normal View History

2025-03-04 21:34:18 -05:00
<!DOCTYPE html>
<html>
<head>
<title>Buy a Ticket</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<%- include('partials/nav') %>
<div class="content">
<form id="buy" method="post" action="/buy">
Email Address to receive tickets:
<input type="email" name="email">
Number of Tickets:
<input type="number" min="1" max="4" step="1" placeholder="1" name="qty">
Pay how much for each ticket:
<input type="number" min="1.00" max="1000.00" step="0.01" placeholder="50.00" name="amount">
<button id="Submit" type="submit">Pay</button>
</form>
</div>
</body>
</html>