123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
- <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
- <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <jsp:include page="${data._INCLUDE}/header.jsp"></jsp:include>
- <script>
- </script>
- </head>
- <body>
- <div class="wrapper">
- <jsp:include page="${data._INCLUDE}/sidebar.jsp"></jsp:include>
-
- <div class="main">
- <jsp:include page="${data._INCLUDE}/top.jsp"></jsp:include>
- <main class="content">
- <div class="container-fluid p-0">
- <div class="row">
- <div class="col-12 col-lg-6">
- <h1 class="h3 mb-3">공지사항</h1>
- </div>
- <div class="col-12 col-lg-6 text-right">
- <nav aria-label="breadcrumb">
- <ol class="breadcrumb">
- <li class="breadcrumb-item"><a href="javscript:;">Home</a></li>
- <li class="breadcrumb-item">공지사항 수정</li>
- </ol>
- </nav>
- </div>
- </div>
- <div class="row">
- <div class="col-12">
- <div class="card">
- <form id="sendForm" action="?" method="post">
- <div class="card-body">
- <table class="table mobile-table">
- <colgroup>
- <%-- <col style="width:20%"> --%>
- <%-- <col style="width:80%"> --%>
- <col style="width:10%">
- <%-- <col style="width:50%">
- <col style="width:10%">
- <col style="width:35%"> --%>
- </colgroup>
-
- <tr>
- <th>번호</th>
- <td colspan="5">
- 1
- </td>
- </tr>
- <tr>
- <th>제목</th>
- <td>ㄴㅇㄹㄴㅇㄹ</td>
- <th style="width:10%">작성자</th>
- <td colspan="1">
- df
- </td>
- </tr>
- <tr>
- <td colspan="5">
- <div style="float: right;">
- sdfsdf
- </div>
-
-
- </td>
- </tr>
- <tr>
- <th>내용</th>
- <td style="white-space: pre;">내에에ㅔ에에용</td>
- </tr>
-
- <tr>
- <th>첨부파일</th>
- <td>
- <!-- <input type="file" name="fileName" > -->
- </td>
- </tr>
- </table>
-
- <div class="row mt-3">
- <div class="col-12">
- <div class="text-right">
- <button type="button" class="btn btn-outline-primary w100" onclick="history.back();">취소</button>
- <button type="submit" class="btn btn-primary w100">삭제</button>
- <button type="submit" class="btn btn-primary w100">수정</button>
- </div>
- </div>
- </div>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
- </main>
- <jsp:include page="${data._INCLUDE}/footer.jsp"></jsp:include>
- </div>
- </div>
- </body>
- </html>
|