19 lines
580 B
HTML
19 lines
580 B
HTML
<html>
|
|
<head>
|
|
<title>Example 2 using @FormDataParam</title>
|
|
</head>
|
|
<body>
|
|
<form method="post" action="/form/example2" enctype="multipart/form-data">
|
|
<label for="first_name">First Name</label>
|
|
<input id="first_name" name="first_name" type="text">
|
|
<label for="last_name">Last Name</label>
|
|
<input id="last_name" name="last_name" type="text">
|
|
<label for="age">Age</label>
|
|
<input id="age" name="age" type="text">
|
|
<label for="photo">Profile Photo</label>
|
|
<input id="photo" name="photo" type="file">
|
|
<input type="submit">
|
|
</form>
|
|
</body>
|
|
</html>
|