add.jsp 추가
This commit is contained in:
30
src/main/webapp/WEB-INF/views/add.jsp
Normal file
30
src/main/webapp/WEB-INF/views/add.jsp
Normal file
@@ -0,0 +1,30 @@
|
||||
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html>
|
||||
<%@ page import="com.example.demo.controller.JSPController"%>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Insert title here</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
id를 입력하세요. <input type="text" value=""><br><br>
|
||||
name을 입력하세요. <input type="text" value=""><br><br>
|
||||
phone을 입력하세요. <input type="text" value=""><br><br>
|
||||
address를 입력하세요. <input type="text" value=""><br><br>
|
||||
filePath를 입력하세요. <input type="text" value=""><br><br>
|
||||
|
||||
<button onclick="doSave()">저정하기</button>
|
||||
<script>
|
||||
function doSave() {
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user