cargo-form.jsp 1.78 KB
Newer Older
1 2 3 4 5
<%@ 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" %>
<%@ taglib uri="http://kwonnam.pe.kr/jsp/template-inheritance" prefix="layout"%>
<layout:extends name="layouts/base.jsp">
6
  <layout:put block="cssDeclaracion" type="APPEND"></layout:put>
7
    <layout:put block="contents" type="REPLACE">
8 9 10 11
      <div class="card justify-content-center mx-auto mt-2" style="width: 20rem;">
        <div class="card-header">
          <h5>Cargo</h5>
        </div>
12
          <form:form
13
          action="/cargos/${cargo.id == null ? 'agregar' : 'modificar/'.concat(cargo.id)}"
14 15
          method="post"
          modelAttribute="cargo"
16
          class="d-flex flex-column"
17
          >
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
            <div class="card-body">
                <form:label class="form-label visually-hidden" path="nombre"
                >Nombre del cargo
                </form:label>
                <form:input
                type="text"
                path="nombre"
                class="form-control ${ mismoNombre ? 'is-invalid' : ''}"
                placeholder="Nombre del cargo" required="true"
                
                />
                <div id="validationServerUsernameFeedback" class="invalid-feedback">
                  Este nombre ya existe
                </div>
            </div>
            <div class="card-footer d-flex flex-column">
              <div class="mt-2 align-self-end">
                  <input type="submit" value='${cargo.id == null ? "Agregar" : "Modificar"}' class="btn btn-primary" />
36
              </div>
37
            </div>
38 39 40 41 42 43 44
          </form:form>
      </div>
    </layout:put>
    <layout:put block="scripts" type="APPEND">

    </layout:put>
</layout:extends>