Descripción
Create a JSP form view to create a new item
File Template: ✅
Prefix
jsp:create
Scopes
jsp
Snippet de código
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html>
<html>
<head>
<title>${1:Crear}</title>
</head>
<body>
<h1>Crear nuevo item</h1>
<form action="${2:}" method="post">
<label for="name">Name:</label>
<input type="text" name="name" id="name" value="${item.name}" />
<button type="submit">Crear</button>
</form>
<a href="../">Volver a la lista</a>
</body>
</html>