cargo-form.jsp 2.06 KB
Newer Older
1 2 3
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ taglib
prefix="form" uri="http://www.springframework.org/tags/form" %> <%@ page
contentType="text/html;charset=UTF-8" language="java" %>
4 5
<!DOCTYPE html>
<html lang="en">
6 7 8 9
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
10
    <title>Cargo</title>
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
    <link
      href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
      rel="stylesheet"
      integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
      crossorigin="anonymous"
    />
    <script
      src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
      integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
      crossorigin="anonymous"
    ></script>
  </head>
  <body>
    <jsp:include page="header.jsp" />
    <jsp:include page="alerts.jsp" />
    <div class="container-xxl my-md-4 bd-layout">
Joel Florentin committed
27 28
      <div class="card d-flex flex-column justify-content-center align-items-center mx-auto mt-2 p-3" style="width: 20rem;">
          <h5 class="card-title">${cargo.id == null ? "Agregar" : "Modificar"} Cargo</h5>
29 30 31 32
            <form:form
            action="/cargo/${cargo.id == null ? '' : cargo.id}"
            method="post"
            modelAttribute="cargo"
Joel Florentin committed
33
            class="card-body d-flex flex-column"
34
            >
Joel Florentin committed
35
            <div class="">
36 37 38 39 40 41 42 43 44 45 46
                <form:label class="form-label visually-hidden" path="nombre"
                >Nombre del cargo
                </form:label>
                <form:input
                type="text"
                path="nombre"
                class="form-control"
                placeholder="Nombre del cargo" required="true"
                
                />
            </div>
Joel Florentin committed
47
            <div class="mt-2 align-self-end">
48 49 50
                <input type="submit" value="Guardar" class="btn btn-primary" />
            </div>
            </form:form>
51
        </div>
52 53 54
    </div>
  </body>
</html>