initial commit
This commit is contained in:
17
templates/booking.html
Normal file
17
templates/booking.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Booking for {{competition['name']}} || GUDLFT</title>
|
||||
</head>
|
||||
<body>
|
||||
<h2>{{competition['name']}}</h2>
|
||||
Places available: {{competition['numberOfPlaces']}}
|
||||
<form action="/purchasePlaces" method="post">
|
||||
<input type="hidden" name="club" value="{{club['name']}}">
|
||||
<input type="hidden" name="competition" value="{{competition['name']}}">
|
||||
<label for="places">How many places?</label><input type="number" name="places" id=""/>
|
||||
<button type="submit">Book</button>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user