Files
eapim-admin/WebContent/sso/app01.jsp
T
2025-11-28 09:38:07 +09:00

47 lines
1.4 KiB
Plaintext

<%@ page language="java" contentType="text/html; charset=UTF8" pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%
String user_id = (String)session.getAttribute("SSO_ID");
String app_id = (String)session.getAttribute("APP_ID");
String ext_info = (String)session.getAttribute("EXT_INFO");
String retCode = (String)session.getAttribute("RET_CODE");
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<h4>Single Sign On [<%=user_id %>]</h4>
<font size=2>
<b>[ 업무시스템 - (SAMPLE_APP-UTF8)]</b>
</font>
<table border=0 width=700 cellpadding=4 cellspacing=1 style="border: solid 1px;">
<tr>
<td width=200 bgcolor=#C3C3C3><font size=2>* 사용자ID</font></td>
<td><font size=2><%=user_id%></font></td>
</tr>
<tr>
<td width=200 bgcolor=#C3C3C3><font size=2>* SERVICE_NAME</font></td>
<td><font size=2><%=app_id%></font></td>
</tr>
<tr>
<td width=200 bgcolor=#C3C3C3><font size=2>* 확장정보</font></td>
<td><font size=2><%=ext_info%></font></td>
</tr>
<tr>
<td width=200 bgcolor=#C3C3C3><font size=2>* 인증토큰 상태</font></td>
<td><font size=2>retCode = [<%=retCode%>] (1000:누락, 1001:시간, 1002:비정상)</font></td>
</tr>
</table>
<hr width=700 align=left>
</body>
</html>