-
Notifications
You must be signed in to change notification settings - Fork 2
/
comment_form.html
48 lines (43 loc) · 2.16 KB
/
comment_form.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
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>상명대학교 - 댓글 수정</title>
<link rel="stylesheet" href="static/css/bootstrap/bootstrap.min.css" media="screen">
<link rel="stylesheet" href="static/css/comment_form.css" media="screen">
<script src="https://kit.fontawesome.com/726bbd6862.js" crossorigin="anonymous"></script>
</head>
<body class="comment-body">
<div include-html="reference/navbar.html"></div>
<div class="container my-3">
<h1 class="comment-title my-5 pb-2">댓글 수정</h1>
<form method="post" class="post-form my-5">
<div class="comment mb-3 row">
<textarea class="col-sm-10 form-control" name="content" id="content" rows="12"></textarea>
</div>
<div class="comment-button">
<button class="btn btn-primary" style="background-color: #6188E8;" type="button">저장 하기</button>
<button class="btn btn-primary" style="background-color: #343a40;" type="button">취소 하기</button>
</div>
</form>
</div>
<div class="footer" include-html="reference/footer.html"></div>
</body>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"></script>
<script src="static/js/includeHTML.js"></script>
<script>
includeHTML();
</script>
</html>