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 684ade7 commit 2bb465d
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
2 changes: 2 additions & 0 deletions exercicios/ex25/cadastro.php
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!
30 changes: 30 additions & 0 deletions exercicios/ex25/form001.html
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>
12 changes: 12 additions & 0 deletions exercicios/ex25/form002.html
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>

0 comments on commit 2bb465d

Please sign in to comment.