mjon_git/src/main/webapp/WEB-INF/jsp/web/member/memberJoin.jsp
2023-06-12 11:15:02 +09:00

41 lines
1.3 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"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<section class="sub">
<c:set var="url" value="${requestScope['javax.servlet.forward.servlet_path']}" />
<c:import url="/itn/web/com/naviWrap.do">
<c:param name="url" value="${url}" />
</c:import>
<div id="wrapper">
<div id="left_menu">
<c:import url="/itn/web/com/leftMenu.do">
<c:param name="url" value="${url}" />
</c:import>
</div>
<div class="login_area">
<h1 class="logo">Login</h1>
<div class="login_form">
<form>
<fieldset>
<legend>로그인화면</legend>
<label for="login_id">아이디 입력</label>
<input class="login_id" id="login_id" placeholder="아이디" type="text" />
<label for="login_pw">비밀번호</label>
<input class="login_pw" id="login_pw" placeholder="비밀번호" type="password" />
<a class="btn_login" href="" title="로그인">
<span>로그인</span>
</a>
</fieldset>
</form>
</div>
<p class="login_txt">
<a href="#">아이디 찾기</a> &nbsp; &nbsp; | &nbsp; &nbsp;
<a href="#">비밀번호 찾기
</a>
</p>
</div>
</div>
</section>