-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviewitem.html
More file actions
executable file
·136 lines (126 loc) · 4.46 KB
/
Copy pathviewitem.html
File metadata and controls
executable file
·136 lines (126 loc) · 4.46 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
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
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE HTML>
<html>
<head>
<style type=text/css>
body {
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
color:#566b78;
line-height: 1.5;
margin: 0;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a, .dropbtn {
display: inline-block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover, .dropdown:hover .dropbtn {
background-color: #111;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover
{
background-color: #f1f1f1;
}
.dropdown:hover .dropdown-content {
display: block;
}
.postheader {
text-align: center;
color:#566b78;
padding: .5em 10em 1em;
}
.form {
text-align:left;
}
</style>
</head>
<body>
<div class=preheader>
<ul>
<li><a href="http://student.cs.appstate.edu/classes/3430/171/team8"><img src=temp2.png width=30px height=17px /></a></li>
<li><a href='http://www.appstate.edu' target = "_blank">AppState</a></li>
<li><a href='http://www.cs.appstate.edu' target = "_blank">Computer Science</a><li>
<li><a href='http://student.cs.appstate.edu/classes/3430/171/team8/insertMember.html'>Student Form</a></li>
<li><a href='http://student.cs.appstate.edu/classes/3430/171/team8/topcontributors.html'>Top Contributors</a></li>
<li><a href='http://student.cs.appstate.edu/classes/3430/171/team8/studentSearch.html'>Student Search</a></li>
<li><a href='http://student.cs.appstate.edu/classes/3430/171/team8/help.html'>Help</a></li>
<li style="float:right"><a href="#">Contact</a></li>
<li style="float:right"><a href="http://student.cs.appstate.edu/classes/3430/171/team8/donate.html">Donate</a></li>
<li style=float:right class=dropdown><a href="#" class='dropbtn'>Manage</a>
<div class='dropdown-content'>
<a href=http://student.cs.appstate.edu/classes/3430/171/team8/modifyitem.html>Modify Item</a>
<a href=http://student.cs.appstate.edu/classes/3430/171/team8/deleteitem.html>Delete Item</a>
<a href=http://student.cs.appstate.edu/classes/3430/171/team8/viewitem.html>View Item</a>
</div>
</li>
</ul>
</div>
<div class=postheader>
<h3>View an Item:</h3>
<form id="viewThings" action="view.php" method="post">
<fieldset>
<table>
<tr>
<td>Choose a table:</td>
<td>
<select name='table' >
<option name="table" id="selection" value="member">Member</option>
<option name="table" id="selection" value="committee">Committee</option>
<option name="table" id="selection" value="contributor">Contributor</option>
<option name="table" id="selection" value="event">Event</option>
<option name="table" id="selection" value="sponsor">Sponsor</option>
<option name="table" id="selection" value="team">Team</option>
</select>
</td>
</tr>
<tr>
<td>Where:</td>
<td>
<input type="text" name='dkey' value="email" />
</td>
<td>
<select name="compOperator" id="op" selected="=">
<option value="=">=</option>
<option value="!=">!=</option>
<option value="<"><</option>
<option value=">">></option>
<option value="<="><=</option>
<option value=">=">>=</option>
</select>
</td>
<td> <input type="text" name="condition" id="cond" value = "condition" /></td>
<td>For this box, but quotation marks around any string.</td>
</tr>
<tr>
<td><input type="submit" value = "Submit" /><td>
</tr>
</table>
</fieldset>
</div>
</body>
</html>