content.jsp 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
  2. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
  3. <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
  4. <%@ page language="java" contentType="text/html; charset=UTF-8"
  5. pageEncoding="UTF-8"%>
  6. <jsp:include page="${data._INCLUDE}/header.jsp"></jsp:include>
  7. <script>
  8. </script>
  9. </head>
  10. <body>
  11. <div class="wrapper">
  12. <jsp:include page="${data._INCLUDE}/sidebar.jsp"></jsp:include>
  13. <div class="main">
  14. <jsp:include page="${data._INCLUDE}/top.jsp"></jsp:include>
  15. <main class="content">
  16. <div class="container-fluid p-0">
  17. <div class="row">
  18. <div class="col-12 col-lg-6">
  19. <h1 class="h3 mb-3">공지사항</h1>
  20. </div>
  21. <div class="col-12 col-lg-6 text-right">
  22. <nav aria-label="breadcrumb">
  23. <ol class="breadcrumb">
  24. <li class="breadcrumb-item"><a href="javscript:;">Home</a></li>
  25. <li class="breadcrumb-item">공지사항 수정</li>
  26. </ol>
  27. </nav>
  28. </div>
  29. </div>
  30. <div class="row">
  31. <div class="col-12">
  32. <div class="card">
  33. <form id="sendForm" action="?" method="post">
  34. <div class="card-body">
  35. <table class="table mobile-table">
  36. <colgroup>
  37. <%-- <col style="width:20%"> --%>
  38. <%-- <col style="width:80%"> --%>
  39. <col style="width:10%">
  40. <%-- <col style="width:50%">
  41. <col style="width:10%">
  42. <col style="width:35%"> --%>
  43. </colgroup>
  44. <tr>
  45. <th>번호</th>
  46. <td colspan="5">
  47. 1
  48. </td>
  49. </tr>
  50. <tr>
  51. <th>제목</th>
  52. <td>ㄴㅇㄹㄴㅇㄹ</td>
  53. <th style="width:10%">작성자</th>
  54. <td colspan="1">
  55. df
  56. </td>
  57. </tr>
  58. <tr>
  59. <td colspan="5">
  60. <div style="float: right;">
  61. sdfsdf
  62. </div>
  63. </td>
  64. </tr>
  65. <tr>
  66. <th>내용</th>
  67. <td style="white-space: pre;">내에에ㅔ에에용</td>
  68. </tr>
  69. <tr>
  70. <th>첨부파일</th>
  71. <td>
  72. <!-- <input type="file" name="fileName" > -->
  73. </td>
  74. </tr>
  75. </table>
  76. <div class="row mt-3">
  77. <div class="col-12">
  78. <div class="text-right">
  79. <button type="button" class="btn btn-outline-primary w100" onclick="history.back();">취소</button>
  80. <button type="submit" class="btn btn-primary w100">삭제</button>
  81. <button type="submit" class="btn btn-primary w100">수정</button>
  82. </div>
  83. </div>
  84. </div>
  85. </div>
  86. </form>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. </main>
  92. <jsp:include page="${data._INCLUDE}/footer.jsp"></jsp:include>
  93. </div>
  94. </div>
  95. </body>
  96. </html>