java-tutorials/web-modules/jooby/public/form.html

18 lines
439 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<form enctype="application/x-www-form-urlencoded" action="/submitForm" method="post">
<label>Employed id:</label><br>
<input name="id"/><br>
<label>Name:</label><br>
<input name="name"/><br>
<label>Email:</label><br>
<input name="email"/><br><br>
<input type="submit" value="Submit"/>
</form>
</body>
</html>