64 lines
2.1 KiB
Plaintext
64 lines
2.1 KiB
Plaintext
<%--
|
|
Class Name : portal-popup1.jsp
|
|
Description : Tiles 팝업 화면
|
|
Modification Information
|
|
|
|
수정일 수정자 수정내용
|
|
------- -------- ---------------------------
|
|
2026.01.14 나혁제 최초 생성
|
|
|
|
author : urp 인프라본부 나혁제
|
|
since : 2026.01.14
|
|
--%>
|
|
|
|
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
|
|
|
|
<%@ taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles" %>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
|
|
<c:set var="ctx" value="${pageContext.request.contextPath}"/>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Language" content="ko" >
|
|
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
<meta name="keywords" content="urITSM">
|
|
<meta name="description" content="urITSM 에 오신것을 환영합니다.">
|
|
|
|
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
|
|
|
|
<link rel="stylesheet" type="text/css" href="${ctx}/css/import.css">
|
|
<script type="text/javascript" src="${ctx}/js/jquery-2.2.4.min.js"></script>
|
|
|
|
<script type="text/javascript" src="${ctx}/js/common_script.js"></script>
|
|
|
|
<link rel="stylesheet" href="${ctx}/js/js-calendar/calendar-jquery-ui.css">
|
|
|
|
<script type="text/javascript" src="${ctx}/js/js-calendar/jquery.js"></script>
|
|
<script type="text/javascript" src="${ctx}/js/js-calendar/jquery-ui.js"></script>
|
|
<script type="text/javascript" src="${ctx}/js/js-calendar/calendar.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrap">
|
|
|
|
<!-- container :s -->
|
|
<div id="container">
|
|
<!-- inner :s -->
|
|
<div class="body_wrap" style=" width: 96%;text-align: center;margin-right:2%;">
|
|
<tiles:insertAttribute name="body" />
|
|
</div>
|
|
<!--//inner :e -->
|
|
</div>
|
|
<!--//container :e -->
|
|
|
|
</div>
|
|
</body>
|
|
|
|
</html> |