-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommunity_Write.html
More file actions
44 lines (36 loc) · 1.42 KB
/
Community_Write.html
File metadata and controls
44 lines (36 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Community</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="../javascripts/Community_Write.js"></script>
<link rel="stylesheet" type="text/css" href="../stylesheets/Additional_Frame.css">
<link rel="stylesheet" type="text/css" href="../stylesheets/Community_Write.css">
</head>
<body>
<div class="sidebar">
<a href="Project">
<img src="../images/logo.jpg" width = "60px">
</a>
<div id="menu_fix">
<ul id="submenu" class="menu">
<li><a name="info" href="Mypage" target="cwindow"> <span>내 정보</span> </a></li>
<li><a name="community" href="#"> <span>커뮤니티</span> </a></li>
<li><a name="logout" href="/"> <span>로그아웃</span> </a></li>
</ul>
</div>
</div>
<div id="wrapper">
<form id="write_post" method = "post" action = "/CommunityNewWrite">
<input type="text" id="title" name="title" placeholder="제목">
<textarea id="content" name="text" placeholder="내용"></textarea>
<input type="submit" id="write_btn" value="완료">
</form>
</div>
</body>
</html>