spring mvc : 회원관리 웹(jsp) - 회원가입 폼

This commit is contained in:
haerong22
2021-04-01 23:19:40 +09:00
parent 193eef5be7
commit b88327b58f
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<form action="/jsp/members/save.jsp" method="post">
username: <input type="text" name="username" />
age: <input type="text" name="age" />
<button type="submit">전송</button>
</form>
</body>
</html>