45 lines
1.7 KiB
Plaintext
45 lines
1.7 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
|
pageEncoding="UTF-8"%>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<script type="text/javascript">
|
|
$(function()
|
|
{
|
|
$(document).ready(function()
|
|
{
|
|
if($("#idc").val()=="o")
|
|
{
|
|
alert("아이디 혹은 비밀번호가 틀렸습니다.");
|
|
$("#idc").val("x");
|
|
};
|
|
});
|
|
});
|
|
</script>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-4 col-md-offset-4">
|
|
<div class="login-panel panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">로그인 하세요</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
<form action="loginCheck.main" method="POST">
|
|
<fieldset>
|
|
<div class="form-group">
|
|
<input class="form-control" id="inLogin" placeholder="아이디" name="member_id" type="text" autofocus>
|
|
</div>
|
|
<div class="form-group">
|
|
<input class="form-control" placeholder="비밀번호" name="password" type="password">
|
|
</div>
|
|
<!-- Change this to a button or input when using this as a form -->
|
|
<input type="submit" class="btn btn-lg btn-success" value="로그인">
|
|
<!--
|
|
<a href="IdcJoinForm.main" class="btn btn-lg btn-default btn-outline">회원가입
</a>
|
|
-->
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|