본문 바로가기
study/MVC

[MVC] 18. MVC Model2방식 - 회원가입 (회원탈퇴)

by 금이패런츠 2022. 4. 15.
728x90
반응형
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%-- src/main/webapp/view/member/deleteForm.jsp --%>
<c:set var="path" value="${pageContext.request.contextPath}" />
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>회원탈퇴</title>
</head>
<body>

<hr>
	<!-- login start -->
	<div class="container">
		<h2   id="center">회원탈퇴</h2>
		<form action="${path}/member/deletePro" 
		method="post">
		<div class="form-group">
			<label >ID:</label> <input type="text" class="form-control" name="id" readonly="readonly"  value="${param.id}"> 
				<label >Password:</label>
			<input type="password" class="form-control" name="pass">
		</div>
		<div id="center" style="padding: 3px;">
			<button type="submit" class="btn btn-dark">회원탈퇴</button>
		</div>
		</form>
	</div>
</body></html>
728x90
반응형