-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_group_add.jsp
55 lines (45 loc) · 1.49 KB
/
admin_group_add.jsp
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
<%@page import="util.Variables"%>
<%@page import="java.util.ArrayList"%>
<%@page import="db.DBProcess"%>
<!DOCTYPE html>
<%
Object obj= session.getAttribute("al");
if(obj==null)response.sendRedirect("admin_login.jsp");
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Add Course </title>
</head>
<!--
//3. group_settings - id,g_name,g_descp,dt
-->
<body>
<center>
<h1 ><font color="#366092"><%=Variables.prjName%></font></h1>
<%@include file="admin_menu.jsp" %>
<h2 ><font color="#366092">Add Course</font></h2>
<%
%>
<form name="frm" action="admin_group_add_action.jsp" method="post">
<table>
<tr>
<td> Name </td>
<td> <input type="text" name="g_name"> </td>
</tr>
<tr>
<td> Description </td>
<td> <textarea name="g_descp"></textarea> </td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" name="s1" value="Add">
<input type="reset" name="r1" value="Reset">
</td>
</tr>
</table>
</form>
<center>
</body>
</html>