-
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
1 parent
350fa15
commit d0eaaf9
Showing
1 changed file
with
31 additions
and
0 deletions.
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,31 @@ | ||
<!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> | ||
</head> | ||
<body> | ||
<h1>Exemplo de Formulário</h1> | ||
<form action="cadastro.php" method="post" autocomplete="on"></form> | ||
|
||
<p> | ||
<label for="icor">Cor</label> | ||
<input type="color" name="Cor" id="icor" value="#00ff00"> | ||
</p> | ||
|
||
<p> | ||
<label for="inivel">Nível de Satisfação</label> | ||
<input type="range" name="nivel" id="inivel" min="1" max="5"> | ||
</p> | ||
<p> | ||
<label for="ifoto">Foto do perfil</label> | ||
<input type="file" name="Foto" id="ifoto"> | ||
</p> | ||
|
||
<p> | ||
<input type="submit" value="Enviar"> | ||
<input type="reset" value="Limpar"> | ||
</p> | ||
</body> | ||
</html> |