Files
2026-02-23 10:01:00 +09:00

88 lines
3.6 KiB
Plaintext

<!--#include virtual = "/common/lib/dbcon.asp" -->
<!--#include virtual = "/common/lib/func.asp" -->
<%
If session("ss_m_id") <> "" Then
Response.redirect "/content/01message/01_01.asp"
Response.end
End if
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>문자전송시스템</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="format-detection" content="telephone=no" />
<link rel="Stylesheet" type="text/css" href="/common/css/all.css" />
<!-- 라디오버튼 -->
<link rel="stylesheet" type="text/css" href="/common/css/radios.min.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" type="text/css" href="/common/css/ie8.css" />
<![endif]-->
<script type="text/javascript" src="/common/js/modernizr.js"></script>
<!-- //라디오버튼 -->
<%If Left(LCase(Request.ServerVariables("PATH_INFO")),10)="/index.asp" Then%>
<link rel="Stylesheet" type="text/css" href="/common/css/main_layout.css" />
<%else%>
<link rel="stylesheet" type="text/css" href="/common/css/sub_layout.css" />
<link rel="stylesheet" type="text/css" href="/common/css/sub_design.css" />
<link rel="stylesheet" type="text/css" href="/common/css/content.css" />
<%End If %>
<script type="text/javascript" src="/common/js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="/common/js/common_dev.js"></script>
<%
prepage = InputValue( request("prepage") )
If prepage <> "" then
If LCase( Left( prepage, 4 ) ) = "http" Then prepage = "/"
End if
%>
<script type="text/javascript">
$(function(){
$("#m_id").focus();
});
function sendit(){
frm = document.getElementById("loginFrm");
if (CheckSpaces(frm.m_id, "아이디")){return false;}
else if (CheckSpaces(frm.m_pwd, "비밀번호")){return false;}
}
</script>
</head>
<body id="skin_c1">
<!-- 스킨선택 -->
<div class="skin_color">
<ul>
<li><input type="radio" id="radio-1-1" name="skin_c" checked="checked" /><label for="radio-1-1"></label></li>
<li><input type="radio" id="radio-1-2" name="skin_c" /><label for="radio-1-2"></label></li>
<li><input type="radio" id="radio-1-3" name="skin_c" /><label for="radio-1-3"></label></li>
<li><input type="radio" id="radio-1-4" name="skin_c" /><label for="radio-1-4"></label></li>
<li><input type="radio" id="radio-1-5" name="skin_c" /><label for="radio-1-5"></label></li>
</ul>
</div>
<!-- //스킨선택 -->
<div class="login_wrap">
<div class="login">
<h1 class="logo"><img src="/img/main/logo.png" alt="" /></h1>
<div class="log_form">
<form id="loginFrm" method="post" action="/content/member/login_ok.asp" onsubmit="return sendit();">
<div>
<input type="hidden" name="prepage" value="<%=request("prepage")%>" />
</div>
<ul>
<li><label for="m_id">아이디</label><input name="m_id" id="m_id" type="text" placeholder="Username" class="w_id" /></li>
<li><label for="m_pwd">비밀번호</label><input name="m_pwd" id="m_pwd" type="password" placeholder="Password" class="w_pw" /></li>
</ul>
<div class="chk_id_log"><input type="checkbox" id="checkbox-3-1" /><label for="checkbox-3-1"></label>아이디 저장</div>
<!-- <a href="/content/01message/01_01.asp" class="btn_login"><img src="/img/main/btn_login.png" alt="로그인" /></a> -->
<input type="image" src="/img/main/btn_login.png" title="로그인" class="btn_login" >
</form>
</div>
</div>
</div>
<div id="footer">copyright (C) Nanum. All rights reserved.</div>
</body>
</html>