-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinsertMember.html
More file actions
executable file
·122 lines (110 loc) · 4.29 KB
/
Copy pathinsertMember.html
File metadata and controls
executable file
·122 lines (110 loc) · 4.29 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
<!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>Student Name Form</h3>
<p><span style=color:red>*</span> denotes a required field</p>
<form action="insertMember.php" method="post" class=form />
<span style=color:red>*</span>First Name: <input type="text" name="mfname" />
MI: <input type="text" name=minit maxlength=1 size=1 />
<span style=color:red>*</span>Last Name: <input type="text" name="mlname" />
<br>
Phone Number: <input type="tel" name="MphoneNo" />
<br>
Year: 1-<input type=radio name=year value=1> 2-<input type=radio name=year value=2> 3-<input type=radio name=year value =3> 4-<input type=radio name=year value = 4> Graduate-<input type=radio name=year value=5>
<br>
<span style=color:red>*</span>Email: <input type="email" name="memail" />
<br>
Major: <input type="text" name="major" />
<br>
Gender:
<select name='gender' >
<option name="gender" id="selection" value="Male">Male</option>
<option name="gender" id="selection" value="Female">Female</option>
<option name="gender" id="selection" value="Other">Other</option>
</select>
<br>
<input type="submit" /><input type="reset">
</form>
</div>
</body>
</html>