-
Notifications
You must be signed in to change notification settings - Fork 0
/
ticketholders.html
123 lines (113 loc) · 3.66 KB
/
ticketholders.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<html>
<head>
<title>Ticketholders</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>Ticketholders</h1>
<nav>
<a href="concerts.html"> Concerts </a>
<a href="artists.html"> Artists </a>
<a href="concert_artists.html"> Artist Performances </a>
<a href="venues.html"> Venues </a>
<a href="recordlabels.html"> Record Labels </a>
<a> Ticketholders </a>
<a href="tickets.html"> Tickets </a>
</nav>
<br />
<div class="read">
<table>
<thead>
<tr>
<th>ID</th>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
<th>Phone</th>
</tr>
</thead>
<tbody>
<tr>
<td> 1 </td>
<td> Kyle </td>
<td> Smith </td>
<td> [email protected] </td>
<td> 454-333-6795 </td>
<td><a href="#"> Delete </a></td>
</tr>
<tr>
<td> 2 </td>
<td> Cara </td>
<td> Whenske </td>
<td> [email protected] </td>
<td> 678-439-8899 </td>
<td><a href="#"> Delete </a></td>
</tr>
<tr>
<td> 3 </td>
<td> Timothy </td>
<td> Rosale </td>
<td> [email protected] </td>
<td> 243-444-9807 </td>
<td><a href="#"> Delete </a></td>
</tr>
<tr>
<td> 4 </td>
<td> Jennifer </td>
<td> Watkins </td>
<td> [email protected] </td>
<td> 213-762-9850 </td>
<td><a href="#"> Delete </a></td>
</tr>
</tbody>
</table>
</div>
<br />
<div class="create">
<form method="POST" id="addTicketholder">
<legend><strong>Add New Ticketholder</strong></legend>
<fieldset>
<label for="fname"> First Name: </label>
<input type="text" id="fname" name="fname" required>
<label for="lname"> Last Name: </label>
<input type="text" id="lname" name="lname" required>
<label for="email"> Email: </label>
<input type="email" id="email" name="email" required>
<label for="phone"> Phone Number: </label>
<input type="tel" id="phone" name="phone" pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}"
required>
</fieldset>
<button type="submit"> Submit </button>
<button> Cancel </button>
</form>
</div>
<br />
<div class="update">
<form method="POST" id="updateTicketholder">
<legend><strong>Update Ticketholder Information</strong></legend>
<fieldset>
<input type="hidden" name="ticketholderID" id="updateTicketholderID" value="1">
<label for="id"> ID: </label>
<select name="id" id="id">
<option value="0"> </option>
<option value="1" selected> 1 </option>
<option value="2"> 2 </option>
<option value="3"> 3 </option>
<option value="4"> 4 </option>
</select>
<label for="fname"> First Name: </label>
<input type="text" id="fname" name="fname" value="Kyle" required>
<label for="lname"> Last Name: </label>
<input type="text" id="lname" name="lname" value="Smith" required>
<label for="email"> Email: </label>
<input type="email" id="email" name="email" value="[email protected]" required>
<label for="phone"> Phone Number: </label>
<input type="tel" id="phone" name="phone" pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}"
value="454-333-6795" required>
</fieldset>
<button type="submit"> Save Changes </button>
<button> Cancel </button>
</form>
</div>
</body>
</html>