-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeleteConfirmationNoJs.html
More file actions
85 lines (81 loc) · 1.56 KB
/
deleteConfirmationNoJs.html
File metadata and controls
85 lines (81 loc) · 1.56 KB
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> No Delete Confirmation </TITLE>
<link rel="stylesheet" href="http://regretless.com/stuff/webTips/styleATable/css/default.css" type="text/css" media="screen" />
</HEAD>
<BODY>
<table class="people" cellpadding="0" cellspacing="0" border="0">
<tr>
<th class="first">
Name
</th>
<th>
Phone number
</th>
<th>
Date of birth
</th>
<th class="last">
Actions
</th>
</tr>
<tr class="odd">
<td class="name">
Mike White
</td>
<td class="phoneNumber">
123-456-789
</td>
<td class="dateOfBirth">
10/11/1976
</td>
<td class="actions">
<a href="#">Edit</a> <a href="delete.php?id=1" class="deleteConfirmation">Delete</a>
</td>
</tr>
<tr class="even">
<td class="name">
Nancy Green
</td>
<td class="phoneNumber">
987-644-311
</td>
<td class="dateOfBirth">
02/24/1950
</td>
<td class="actions">
<a href="#">Edit</a> <a href="delete.php?id=2" class="deleteConfirmation">Delete</a>
</td>
</tr>
<tr class="odd">
<td class="name">
Melissa Johnson
</td>
<td class="phoneNumber">
687-877-9787
</td>
<td class="dateOfBirth">
05/06/1984
</td>
<td class="actions">
<a href="#">Edit</a> <a href="delete.php?id=3" class="deleteConfirmation">Delete</a>
</td>
</tr>
<tr class="even">
<td class="name">
John Smith
</td>
<td class="phoneNumber">
987-987-4323
</td>
<td class="dateOfBirth">
11/21/1968
</td>
<td class="actions">
<a href="#">Edit</a> <a href="delete.php?id=4" class="deleteConfirmation">Delete</a>
</td>
</tr>
</table>
</BODY>
</HTML>