verusuario.jsp 868 Bytes
Newer Older
Nelson Ruiz committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<%@ 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>