Skip to content

Commit

Permalink
ex2 formulario
Browse files Browse the repository at this point in the history
  • Loading branch information
LarissaMicheli committed Oct 5, 2024
1 parent a83d9ba commit 0ae228d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions exercicios/ex25/form002.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
</head>
<body>
<h1>Teste de formulario</h1>
<form action="cadastro.php" method="POST">
<form action="cadastro.php" method="POST" autocomplete="on">
<p>
<label for="iusu">Usuário:</label>
<input type="text" name="usu" id="iusu" required minlength="5" maxlength="15">
<input type="text" name="usu" id="iusu" required minlength="5" maxlength="15" size="10" placeholder="nome do Usuário" autocomplete="username">
</p>
<p><label for="isen">Senha:</label>
<input type="password" name="sen" id="isen" required minlength="8">
<input type="password" name="sen" id="isen" required minlength="8" maxlength="20" size="8" placeholder="mínimo 8 letras" autocomplete="current-password">
</p>
<p><input type="submit" value="Enviar">
<input type="reset" value="Limpar"></p>
Expand Down

0 comments on commit 0ae228d

Please sign in to comment.