-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
66 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Os dados foram enviados! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="pt-br"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Formulário</title> | ||
<link rel="stylesheet" href="styles/style.css"> | ||
</head> | ||
<body> | ||
<h1>Teste de Formulário</h1> | ||
<form action="cadastro.php" method="post" autocomplete="on"> | ||
<p> | ||
<label for="iuser">Usuário: </label> | ||
<input type="text" name="user" id="iuser" required minlength="5" maxlength="20" size="12" placeholder="Nome do Usuário" autocomplete="username"> | ||
</p> | ||
<p> | ||
<label for="ipassword">Senha: </label> | ||
<input type="password" name="password" id="ipassword" required minlength="8" maxlength="20" size="12" placeholder="Mínimo 8 caracteres" autocomplete="current-password"> | ||
</p> | ||
<p> | ||
<input type="submit" value="Enviar"> | ||
<input type="reset" value="Limpar"> | ||
</p> | ||
</form> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!DOCTYPE html> | ||
<html lang="pt-br"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Formulário</title> | ||
<link rel="stylesheet" href="styles/style.css"> | ||
</head> | ||
<body> | ||
<h1>Teste de Formulário</h1> | ||
<form action="cadastro.php" method="get" autocomplete="on"> | ||
<p> | ||
<label for="iname">Nome: </label> | ||
<input type="text" name="name" id="iname" required maxlength="30" placeholder="Nome Completo" autocomplete="name" size="20"> | ||
</p> | ||
<p> | ||
<label for="imed">Média: </label> | ||
<input type="number" name="med" id="imed" required min="0" max="10" placeholder="Nota média de 0 a 10" size="20" step="0.1"> | ||
</p> | ||
<p> | ||
<label for="imonth">Período Letivo: </label> | ||
<input type="month" name="month" id="imonth" required value="2025-01"> | ||
</p> | ||
<p> | ||
<label for="iday">Dia da avaliação: </label> | ||
<input type="date" name="day" id="iday" required value="2025-01-03"> | ||
</p> | ||
<p> | ||
<label for="itime">Hora da avaliação: </label> | ||
<input type="time" name="time" id="itime" required> | ||
</p> | ||
<p> | ||
<input type="submit" value="Enviar"> | ||
<input type="reset" value="Limpar"> | ||
</p> | ||
</form> | ||
</body> | ||
</html> |