-
Notifications
You must be signed in to change notification settings - Fork 0
/
write.html
85 lines (85 loc) · 4.65 KB
/
write.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<!-- Bootstrap CSS -->
<!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous"> -->
<title>K-tech Company</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v6.1.0/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700" rel="stylesheet" type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles2.css" rel="stylesheet" />
<link href="/board.css" rel="stylesheet" />
<style>body {padding-top:70px; padding-bottom: 30px;}</style>
</head>
<body id="page-top">
<nav class="navbar navbar-expand-lg navbar-dark fixed-top navbar-shrink" id="mainNav">
<div class="container">
<a class="navbar-brand" href="/main.html"><img src="assets/img/logo.png" alt="..." /></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fas fa-bars ms-1"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ms-auto py-4 py-lg-0">
<li class="nav-item"><a class="nav-link" href="/main.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="/board.html">Notice</a></li>
<li class="nav-item"><a class="nav-link" href="/organization.html">Organization</a></li>
<li class="nav-item"><a class="nav-link" href="#!">Team</a></li>
<li class="nav-item"><a class="nav-link" href="#!">Contact</a></li>
<li class="nav-item"><a class="nav-link" href="/logout.js">Logout</a></li>
</ul>
</div>
</div>
</nav>
<section class="page-section" id="">
<section class="notice">
<div id="board-list">
<div class="page-title">
<div class="container">
<div class="text-center">
<h3 class="section-heading text-uppercase">게시판 글 작성</h3>
<h3 class="section-subheading text-muted"></h3>
</div>
</div>
</div>
</div>
<article>
<div class="container" role="main">
<form name="write_form" id="write_form" role="form" method="post" action="/write.js">
<div class="mb-3">
<label for="title">제목</label>
<input type="text" class="form-control" name="title" id="title" placeholder="제목을 입력해 주세요">
</div>
<div class="mb-3">
<label for="member_id">작성자</label>
<!-- <% var rows=rows; %> -->
<input type="text" class="form-control" name="member_id" id="member_id" placeholder=<%= rows %> disabled>
</div>
<div class="mb-3">
<label for="content">내용</label>
<textarea class="form-control" rows="5" name="content" id="content" placeholder="내용을 입력해 주세요" ></textarea>
</div>
<div class="mb-3">
<button type="submit" class="btn btn-dark" style="width:90pt;height:30pt;float:right;" id="wirte_form">글 작성</button>
</div>
</form>
</div>
</article>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
<script src="https://cdn.startbootstrap.com/sb-forms-latest.js"></script>
</body>
</html>