<%@ page contentType="text/html;charset=UTF-8" language="java" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> <!DOCTYPE html> <html> <head> <title>Uh Oh Trouble in Paradise Land</title> </head> <body> <form action="/modificar/${film.getFilm_id()}" method="post"> <label for="ftitle">Titulo</label> <input type="text" name="ftitle" id="ftitle" value="${film.getTitle()}"> <br><br> <label for="description">Descripción</label> <textarea name="description" id="description" cols="80" rows="5" > ${film.getDescription()}</textarea> <br><br> <input type="submit" value="Guardar"> </form> </body> </html>