-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpass-selection.html
24 lines (24 loc) · 1021 Bytes
/
pass-selection.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<div class="container">
<h1>Pass Enrollment</h1>
<div class="form-group">
<label for="passType">Select Pass Type:</label>
<select class="form-control" id="passType" [(ngModel)]="passType">
<option value="daily">Daily Pass</option>
<option value="weekly">Weekly Pass</option>
<option value="monthly">Monthly Pass</option>
</select>
</div>
<div class="form-group">
<label for="startDate">Start Date:</label>
<input type="date" class="form-control" id="startDate" [(ngModel)]="startDate">
</div>
<div class="form-group">
<label for="endDate">End Date:</label>
<input type="date" class="form-control" id="endDate" [(ngModel)]="endDate">
</div>
<div class="form-group">
<label for="seatNumber">Seat Number:</label>
<input type="text" class="form-control" id="seatNumber" [(ngModel)]="seatNumber">
</div>
<button class="btn btn-primary" (click)="submit()">Submit</button>
</div>