-
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
684ade7
commit 2bb465d
Showing
3 changed files
with
44 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,2 @@ | ||
Os dados foram enviados! | ||
Aprenda php pra saber oque fazer com eles! |
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,30 @@ | ||
<!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> | ||
<style> | ||
*{ | ||
font-family: Arial, Helvetica, sans-serif; | ||
} | ||
body{ | ||
background-color: rgb(235, 68, 223); | ||
} | ||
input{ | ||
background-color: aqua; | ||
border-radius: 10px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h1>Meu primeiro formulário</h1> | ||
<form action="cadastro.php" method="POST" cautocapitalize="off"> | ||
<p><label for="inome">Nome:</label> | ||
<input type="text" name="nome" id="inome"></p> | ||
<p><label for="isobrenome">Sobrenome:</label> | ||
<input type="text" name="sobrenome" id="isobrenome"></p> | ||
<p><input type="submit" value="Enviar"></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,12 @@ | ||
<!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>Teste de formulario</h1> | ||
<form action="" method="get"></form> | ||
</body> | ||
</html> |