25 lines
570 B
HTML
25 lines
570 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
<script src="https://cdn.staticfile.org/jquery/3.3.1/jquery.min.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<h1>User POJO post test</h1>
|
|
|
|
|
|
<form id="uploadForm" action="/params/vo" method="post">
|
|
<span>Person POJO:</span>
|
|
<input type="text" name="name" placeholder="name"/>
|
|
<input type="text" name="site" placeholder="site"/>
|
|
<button id="upload" type="submit">Send user object</button>
|
|
</form>
|
|
|
|
<br />
|
|
<a href="/">Back</a>
|
|
|
|
</body>
|
|
</html> |