Commit 17f5fe2ba3d948ba330aa7cfac0d2baa8c58688f
1 parent
41210d7a
Exists in
master
alteração texto e maxlength
Showing
3 changed files
with
5 additions
and
5 deletions
Show diff stats
WebContent/WEB-INF/jsp/contato/contato.jsp
... | ... | @@ -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
... | ... | @@ -64,7 +64,7 @@ |
64 | 64 | <fieldset id="entrarFieldset"> |
65 | 65 | <legend><strong>Entrar</strong></legend> |
66 | 66 | <label for="valorHash">Código de Acesso:</label><br> |
67 | - <input type="text" name="valorHash" id="valorHash" size="30" maxlength="30" required><br> | |
67 | + <input type="text" name="valorHash" id="valorHash" size="60" maxlength="60" required><br> | |
68 | 68 | </fieldset><br> |
69 | 69 | <input type="submit" class="button" id="botaoAcesso" value="Entrar"> |
70 | 70 | </form> | ... | ... |
WebContent/WEB-INF/jsp/relatorio/relatorio.jsp
... | ... | @@ -46,7 +46,7 @@ |
46 | 46 | |
47 | 47 | <legend><strong>Entrar</strong></legend> |
48 | 48 | <label for="valorHash">Código de Acesso:</label><br> |
49 | - <input type="text" name="valorHash" id="valorHash" size="30" maxlength="30" required><br><br> | |
49 | + <input type="text" name="valorHash" id="valorHash" size="60" maxlength="60" required><br><br> | |
50 | 50 | <input type="submit" class="button" id="bImprimir" value="Emitir Relatório"> |
51 | 51 | </fieldset><br> |
52 | 52 | </div> | ... | ... |