From fffc163fb379db8d228181b353b1f28a974aa224 Mon Sep 17 00:00:00 2001 From: leebeomjun Date: Mon, 12 Jun 2023 08:46:00 +0900 Subject: [PATCH] =?UTF-8?q?index.jsp=20taglib.jsp=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/WEB-INF/jsp/fimsindex.jsp | 257 ---------------- .../WEB-INF/jsp/include/fims/taglib.jsp | 4 - .../WEB-INF/jsp/include/taglib-prototype.jsp | 4 + .../webapp/WEB-INF/jsp/include/taglib.jsp | 11 +- .../webapp/WEB-INF/jsp/index-prototype.jsp | 30 ++ src/main/webapp/WEB-INF/jsp/index.jsp | 274 ++++++++++++++++-- .../jsp/{fimslogin.jsp => login-fims.jsp} | 0 7 files changed, 291 insertions(+), 289 deletions(-) delete mode 100644 src/main/webapp/WEB-INF/jsp/fimsindex.jsp delete mode 100644 src/main/webapp/WEB-INF/jsp/include/fims/taglib.jsp create mode 100644 src/main/webapp/WEB-INF/jsp/include/taglib-prototype.jsp create mode 100644 src/main/webapp/WEB-INF/jsp/index-prototype.jsp rename src/main/webapp/WEB-INF/jsp/{fimslogin.jsp => login-fims.jsp} (100%) diff --git a/src/main/webapp/WEB-INF/jsp/fimsindex.jsp b/src/main/webapp/WEB-INF/jsp/fimsindex.jsp deleted file mode 100644 index ed00ac9c..00000000 --- a/src/main/webapp/WEB-INF/jsp/fimsindex.jsp +++ /dev/null @@ -1,257 +0,0 @@ -<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> -<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> -<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%> - - - -
-
- - - -
-
    - -
-
- -
- - - -
- -
-
- -
- - - - - -
-
- -
- - -
-
- - -
- - - - - - \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fims/taglib.jsp b/src/main/webapp/WEB-INF/jsp/include/fims/taglib.jsp deleted file mode 100644 index e1a0c515..00000000 --- a/src/main/webapp/WEB-INF/jsp/include/fims/taglib.jsp +++ /dev/null @@ -1,4 +0,0 @@ -<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> - -<%@ taglib prefix="code" uri="/WEB-INF/tlds/code.tld"%> -<%@ taglib prefix="privacy" uri="/WEB-INF/tlds/privacy.tld"%> diff --git a/src/main/webapp/WEB-INF/jsp/include/taglib-prototype.jsp b/src/main/webapp/WEB-INF/jsp/include/taglib-prototype.jsp new file mode 100644 index 00000000..19a0e603 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/taglib-prototype.jsp @@ -0,0 +1,4 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false" +%><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" +%><%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" +%><%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/taglib.jsp b/src/main/webapp/WEB-INF/jsp/include/taglib.jsp index 19a0e603..309500ed 100644 --- a/src/main/webapp/WEB-INF/jsp/include/taglib.jsp +++ b/src/main/webapp/WEB-INF/jsp/include/taglib.jsp @@ -1,4 +1,7 @@ -<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false" -%><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" -%><%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" -%><%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> \ No newline at end of file +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false" %> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> + +<%@ taglib prefix="code" uri="/WEB-INF/tlds/code.tld"%> +<%@ taglib prefix="privacy" uri="/WEB-INF/tlds/privacy.tld"%> diff --git a/src/main/webapp/WEB-INF/jsp/index-prototype.jsp b/src/main/webapp/WEB-INF/jsp/index-prototype.jsp new file mode 100644 index 00000000..af7ea902 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/index-prototype.jsp @@ -0,0 +1,30 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false"%> +<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%> + + + +
+
+ + +
+ + +
+ +
+
+ + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/index.jsp b/src/main/webapp/WEB-INF/jsp/index.jsp index af7ea902..d6b0457c 100644 --- a/src/main/webapp/WEB-INF/jsp/index.jsp +++ b/src/main/webapp/WEB-INF/jsp/index.jsp @@ -1,30 +1,256 @@ -<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false"%> +<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <%@ include file="/WEB-INF/jsp/include/taglib.jsp"%> - - - -
-
- - -
- - -
- -
+ + +