Skip to content

Commit

Permalink
Atualizei
Browse files Browse the repository at this point in the history
  • Loading branch information
LarissaMicheli committed Oct 5, 2024
1 parent 2bb465d commit a83d9ba
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion exercicios/ex25/form002.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@
</head>
<body>
<h1>Teste de formulario</h1>
<form action="" method="get"></form>
<form action="cadastro.php" method="POST">
<p>
<label for="iusu">Usuário:</label>
<input type="text" name="usu" id="iusu" required minlength="5" maxlength="15">
</p>
<p><label for="isen">Senha:</label>
<input type="password" name="sen" id="isen" required minlength="8">
</p>
<p><input type="submit" value="Enviar">
<input type="reset" value="Limpar"></p>
</form>
</body>
</html>

0 comments on commit a83d9ba

Please sign in to comment.