Commit c6b7f04e941596282a369632327f258d9a0ced3a

Authored by gibransodre
2 parents a5f226d8 acd8641d
Exists in master

Merge remote-tracking branch 'origin/master'

WebContent/WEB-INF/jsp/contato/contato.jsp
... ... @@ -6,8 +6,8 @@
6 6 <t:baseLayout>
7 7 <jsp:body>
8 8  
9   - <div>
10   - <c:if test="${not empty mensagem}">
  9 + <div>
  10 + <c:if test="${not empty mensagem}">
11 11 <label id="tituloAvisos" for="mensagem_${error.campo}">Foram encontrados os seguintes erros:</label>
12 12 <c:forEach items="${mensagem}" var="error">
13 13 <div class="alinName"><a id="mensagemErroCampoVazio_${error.campo}" href="#${error.campo}">${error.mensagem}</a></div>
... ... @@ -38,11 +38,11 @@
38 38 <legend>Formulário de Contato</legend>
39 39 <br>
40 40 <label id="labelNome" for="nome">Nome:</label>
41   - <input type="text" name="contato.nome" value="${contato.nome}" id="nome" size="50" required/>
  41 + <input type="text" name="contato.nome" value="${contato.nome}" id="nome" size="50" maxlength="50" required/>
42 42 <br>
43 43 <br>
44 44 <label id="labelEmail" for="email">E-mail:</label>
45   - <input type="email" name="contato.email" value="${contato.email}" id="email" size="50" required/>
  45 + <input type="email" name="contato.email" value="${contato.email}" id="email" size="50" maxlength="50" required/>
46 46 <br>
47 47 <br>
48 48 <label id="labelAssunto" for="assunto">Assunto:</label>
... ... @@ -55,7 +55,7 @@
55 55 <br>
56 56 <br>
57 57 <label class="labelContato" for="mensagem">Mensagem:</label>
58   - <textarea name="contato.mensagem" id="mensagem" cols="110" rows="8" required>${contato.mensagem}</textarea>
  58 + <textarea name="contato.mensagem" id="mensagem" cols="110" maxlength="800" rows="8" required>${contato.mensagem}</textarea>
59 59 <br>
60 60 <br>
61 61 <input type="submit" class="button" name="enviar" id="enviar" value="Enviar" class="bnt"/>
... ...
WebContent/WEB-INF/jsp/login/login.jsp
... ... @@ -5,7 +5,9 @@
5 5  
6 6 <t:baseLayout>
7 7 <jsp:body>
8   -
  8 +
  9 +
  10 +
9 11 <div class="funcionalidades">
10 12 <ul class="breadcrumb">
11 13 <li><span>Você está em:</span></li>
... ... @@ -64,7 +66,7 @@
64 66 <fieldset id="entrarFieldset">
65 67 <legend><strong>Entrar</strong></legend>
66 68 <label for="valorHash">Código de Acesso:</label><br>
67   - <input type="text" name="valorHash" id="valorHash" size="30" maxlength="30" required><br>
  69 + <input type="text" name="valorHash" id="valorHash" size="60" maxlength="60" required><br>
68 70 </fieldset><br>
69 71 <input type="submit" class="button" id="botaoAcesso" value="Entrar">
70 72 </form>
... ...
WebContent/WEB-INF/jsp/relatorio/relatorio.jsp
... ... @@ -5,6 +5,7 @@
5 5  
6 6 <t:baseLayout>
7 7 <jsp:body>
  8 +
8 9  
9 10 <div class="funcionalidades">
10 11 <ul class="breadcrumb">
... ... @@ -16,6 +17,7 @@
16 17 <li>| Emitir Relatório</li>
17 18 </ul>
18 19 </div><br>
  20 +
19 21  
20 22 <div>
21 23 <c:if test="${not empty mensagemValidacaoCamposOrgao}">
... ... @@ -46,7 +48,7 @@
46 48  
47 49 <legend><strong>Entrar</strong></legend>
48 50 <label for="valorHash">Código de Acesso:</label><br>
49   - <input type="text" name="valorHash" id="valorHash" size="30" maxlength="30" required><br><br>
  51 + <input type="text" name="valorHash" id="valorHash" size="60" maxlength="60" required><br><br>
50 52 <input type="submit" class="button" id="bImprimir" value="Emitir Relatório">
51 53 </fieldset><br>
52 54 </div>
... ...