-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e3bf74e
commit edd765f
Showing
59 changed files
with
3,171 additions
and
1,345 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,51 @@ | ||
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %> | ||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> | ||
|
||
<!DOCTYPE html> | ||
<html lang="pt-br"> | ||
<!DOCTYPE html> | ||
<html lang="pt-br"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Alterar Grupo</title> | ||
<head> | ||
<c:import url="common/meta-link.jsp" /> | ||
<title>USJT - Alterar Grupo</title> | ||
</head> | ||
|
||
<link href="css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="css/style.css" rel="stylesheet"> | ||
</head> | ||
|
||
<body> | ||
<!-- Barra superior com os menus de navegação --> | ||
<c:import url="Menu.jsp"/> | ||
<!-- Container Principal --> | ||
<div id="main" class="container"> | ||
<h3 class="page-header">Alterar Grupo #${grupo.id }</h3> | ||
<!-- Formulario para alteração de clientes --> | ||
<form action="controller.do" method="post"> | ||
<!-- area de campos do form --> | ||
<input type="hidden" name="id" value="${grupo.id }" /> | ||
<div class="row"> | ||
<div class="form-group col-md-12"> | ||
<label for="nome">Nome</label> | ||
<input type="text" class="form-control" name="nome" id="nome" required maxlength="100" placeholder="nome" value="${grupo.nome }"> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="form-group col-md-12"> | ||
<label for="nome">Numero</label> | ||
<input type="text" class="form-control" name="numero" id="numero" required maxlength="100" placeholder="numero" value="${grupo.num }"> | ||
</div> | ||
</div> | ||
<hr /> | ||
<div id="actions" class="row"> | ||
<div class="col-md-12"> | ||
<button type="submit" class="btn btn-primary" name="command" value="AlterarGrupo">Salvar</button> | ||
<a href="ListarGrupos.jsp" class="btn btn-default">Cancelar</a> | ||
</div> | ||
</div> | ||
</form> | ||
<body class="background-image"> | ||
<!-- Barra superior com os menus de navegação --> | ||
<c:import url="common/menu.jsp" /> | ||
<!-- Container Principal --> | ||
<div id="main" class="container"> | ||
<h3 class="page-header">Alterar Grupo #${grupo.id }</h3> | ||
<!-- Formulario para alteração de clientes --> | ||
<form action="controller.do" method="post" autocomplete="off"> | ||
<!-- area de campos do form --> | ||
<input type="hidden" name="id" value="${grupo.id }" /> | ||
<div class="row"> | ||
<div class="form-group col-md-12"> | ||
<label for="nome">Nome</label> | ||
<input type="text" class="form-control" name="nome" id="nome" required maxlength="100" | ||
placeholder="nome" value="${grupo.nome }"> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="form-group col-md-12"> | ||
<label for="nome">Numero</label> | ||
<input type="text" class="form-control" name="numero" id="numero" required maxlength="100" | ||
placeholder="numero" value="${grupo.num }"> | ||
</div> | ||
</div> | ||
<hr /> | ||
<div id="actions" class="row"> | ||
<div class="col-md-12"> | ||
<button type="submit" class="btn btn-primary" name="command" value="AlterarGrupo">Salvar</button> | ||
<a href="ListarGrupos.jsp" class="btn btn-default">Cancelar</a> | ||
</div> | ||
<script src="js/jquery.min.js"></script> | ||
<script src="js/bootstrap.min.js"></script> | ||
</body> | ||
</div> | ||
</form> | ||
</div> | ||
|
||
<footer> | ||
<c:import url="common/footer.jsp" /> | ||
</footer> | ||
</body> | ||
|
||
</html> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.