Commit 9e0703c6c29e29a8362593ffee456bfa47961a80
1 parent
5649d929
Exists in
master
alteracoes no plano de trabalho(layout e css)
Showing
2 changed files
with
40 additions
and
18 deletions
Show diff stats
WebContent/WEB-INF/jsp/mapa/mapa.jsp
... | ... | @@ -52,6 +52,12 @@ |
52 | 52 | |
53 | 53 | <li class="linhasMapa"> |
54 | 54 | <div> |
55 | + <a href="${pageContext.request.contextPath}/planoTrabalho-site" id="msPlanoTrabalho">Plano Trabalho</a> | |
56 | + </div> | |
57 | + </li> | |
58 | + | |
59 | + <li class="linhasMapa"> | |
60 | + <div> | |
55 | 61 | <a href="${pageContext.request.contextPath}/contato/contato-site" id="msContato">Contato</a> |
56 | 62 | </div> |
57 | 63 | </li> | ... | ... |
WebContent/WEB-INF/jsp/planoTrabalho/planoTrabalho.jsp
1 | 1 | <%@page contentType="text/html" pageEncoding="UTF-8"%> |
2 | +<%@taglib prefix="t" tagdir="/WEB-INF/tags"%> | |
2 | 3 | <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> |
3 | 4 | <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> |
4 | -<!DOCTYPE html> | |
5 | -<html lang=pt-br> | |
6 | 5 | |
7 | -<head> | |
8 | -<title>Relatório Circunstanciado de Acessibilidade Digital</title> | |
9 | -</head> | |
10 | -<body> | |
6 | +<t:baseLayout> | |
7 | + <jsp:body> | |
11 | 8 | |
9 | + <div class="funcionalidades"> | |
10 | + <ul class="breadcrumb"> | |
11 | + <li> | |
12 | + <span>Você está em:</span> | |
13 | + </li> | |
14 | + <li> | |
15 | + <a href="${pageContext.request.contextPath}/" id="bcFormulario"> Página Inicial </a></li> | |
16 | + <li>| Plano de Trabalho</li> | |
17 | + </ul> | |
18 | + </div><br> | |
19 | + | |
20 | + <p>Conforme determina a portaria que regula este Formulário Circunstanciado em seu artigo 4º:</p> | |
21 | + <p><strong>Art. 4º Os órgãos e entidades da administração pública federal direta e indireta deverão elaborar um plano de trabalho para cada | |
22 | + ambiente digital que não esteja em conformidade com as diretrizes de acessibilidade.</strong></p> | |
23 | + <p>Neste espaço você ira entrar com o seu código de acesso e fazer um <i>upload</i> do plano de trabalho elaborado pelo órgão. Caso o órgão | |
24 | + tenha feito mais de um plano de trabalho, deverá unificar todos os planos de trabalho em um unico arquivo de formato pdf, doc ou odt e clicar no botão 'Enviar'. | |
12 | 25 | |
13 | -<form action="${pageContext.request.contextPath}/salvar-plano-trabalho" method="post" enctype="multipart/form-data"> | |
14 | 26 | |
15 | -<fieldset> | |
16 | -<legend>Plano de Trabalho</legend> | |
27 | + <form action="${pageContext.request.contextPath}/salvar-plano-trabalho" method="post" enctype="multipart/form-data"> | |
17 | 28 | |
18 | -<label for="valorHash">Código Hash: </label> | |
19 | -<input type="text" id="valorHash" name="valorHash"><br><br> | |
20 | -<label for="file">Arquivo: </label> | |
21 | -<input type="file" id="file" name="file"><br><br> | |
22 | -<input type="submit" value="Salvar"> | |
23 | -</fieldset> | |
24 | -</form> | |
25 | -</body> | |
26 | -</html> | |
27 | 29 | \ No newline at end of file |
30 | + <fieldset class="layoutCampos"> | |
31 | + <legend>Plano de Trabalho</legend> | |
32 | + | |
33 | + <label for="valorHash">Código de acesso: </label> | |
34 | + <input type="text" id="valorHash" name="valorHash" size="60" maxlength="60" required><br><br> | |
35 | + <label for="file">Arquivo: </label> | |
36 | + <input type="file" id="file" name="file" required><br><br> | |
37 | + <input type="submit" class="button" value="Enviar"> | |
38 | + </fieldset> | |
39 | + | |
40 | + </form> | |
41 | + | |
42 | + </jsp:body> | |
43 | +</t:baseLayout> | ... | ... |