-
Notifications
You must be signed in to change notification settings - Fork 1
/
create_course.jsp
142 lines (136 loc) · 3.63 KB
/
create_course.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
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
135
136
137
138
139
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ page import="java.sql.*" %>
<head>
<title>코스 생성</title>
</head>
<%@ include file="top.jsp" %>
<%
if (session_id == null)
response.sendRedirect("login.jsp");
else {
%>
<div id="containerwrap">
<div id="container">
<div class="section_title">
<h1>
<span>수업 생성</span>
</h1>
</div>
<form method="post" action="createCourse_verify.jsp">
<table width="75%" align="center" border>
<tr>
<td colspan="2">
<div align="center">
<h2>강의 추가</h2>
</div>
</td>
</tr>
<tr>
<td>
<div align="center">강의번호</div>
</td>
<td>
<div align="center">
<input type="text" name="courseId">
</div>
</td>
</tr>
<tr>
<td>
<div align="center">강의 분반 번호</div>
</td>
<td>
<div align="center">
<input type="text" name="courseIdNo">
</div>
</td>
</tr>
<tr>
<td>
<div align="center">강의명</div>
</td>
<td>
<div align="center">
<input type="text" name="courseName">
</div>
</td>
</tr>
<tr>
<td>
<div align="center">학점</div>
</td>
<td>
<div align="center">
<input type="text" name="courseUnit">
</div>
</td>
</tr>
<tr>
<td>
<div align="center">최대 수강인원</div>
</td>
<td>
<div align="center">
<input type="text" name="courseMax">
</div>
</td>
</tr>
<tr>
<td>
<div align="center">수업 요일 설정</div>
</td>
<td>
<div align="center">
<select name="courseDate">
<option value="">요일 선택</option>
<option value="1">월,수</option>
<option value="2">화,목</option>
<option value="3">금</option>
</select>
</div>
</tr>
<tr>
<td>
<div align="center">수업 시간 설정</div>
</td>
<td>
<div align="center">
<select name="courseTime">
<option value="">시간선택</option>
<option value="1">1교시 9:00-10:30</option>
<option value="2">2교시 10:30-12:00</option>
<option value="3">3교시 12:00-13:30</option>
<option value="4">4교시 13:30-15:00</option>
<option value="5">5교시 15:00-16:30</option>
<option value="6">6교시 16:30-18:00</option>
<option value="7">7교시 18:00-19:30</option>
<option value="8">8교시 19:30-21:00</option>
</select>
</div>
</td>
<tr>
<td>
<div align="center">수업 장소 선택</div>
</td>
<td>
<div align="center">
<input type="text" name="courseWhere">
</div>
</td>
</tr>
<tr>
<td colspan=2>
<div align="center">
<INPUT TYPE="SUBMIT" NAME="Submit" VALUE="추가"> <INPUT
TYPE="RESET" VALUE="취소">
</div>
</td>
</tr>
</table>
</form>
</div>
</div>
<%
}
%>
<%@ include file="footer.jsp" %>