forked from eomjinyoung/JavaWebProgramming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectForm.jsp
More file actions
47 lines (46 loc) · 1.15 KB
/
ProjectForm.jsp
File metadata and controls
47 lines (46 loc) · 1.15 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
<%@ page
language="java"
contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>프로젝트 등록</title>
<style>
ul { padding: 0; }
li { list-style:none; }
label {
float: left;
text-align: right;
width: 60px;
}
</style>
</head>
<body>
<jsp:include page="/Header.jsp"/>
<h1>프로젝트 등록</h1>
<form action='add.do' method='post'>
<ul>
<li><label for="title">제목</label>
<input id="title"
type='text' name='title' size="50"></li>
<li><label for="content">내용</label>
<textarea id="content"
name='content' rows="5" cols="40"></textarea></li>
<li><label for="sdate">시작일</label>
<input id="sdate"
type='text' name='startDate' placeholder="예)2013-01-01"></li>
<li><label for="edate">종료일</label>
<input id="edate"
type='text' name='endDate' placeholder="예)2013-01-01"></li>
<li><label for="tags">태그</label>
<input id="tags"
type='text' name='tags' placeholder="예)태그1 태그2 태그3" size="50"></li>
</ul>
<input type='submit' value='추가'>
<input type='reset' value='취소'>
</form>
<jsp:include page="/Tail.jsp"/>
</body>
</html>