Last active
January 6, 2022 21:34
-
-
Save rhogeranacleto/3969608032bda43cd7970b46c30d25c1 to your computer and use it in GitHub Desktop.
integrated form
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Formulario Integrado 1.3.3</title> | |
<style> | |
body { | |
padding: 50px; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Formulários Integrados 1.3.3</h1> | |
<form action="#" method="get" name="form-integrado-teste-gist"> | |
<table> | |
<tr> | |
<td>Nome</td> | |
<td><input type="text" name="campo_nome" value="Ramon"></td> | |
</tr> | |
<tr> | |
<td>E-mail</td> | |
<td><input type="email" name="campo_email"></td> | |
</tr> | |
<tr> | |
<td>Cidade</td> | |
<td><input type="text" name="campo_cidade" value="São Paulo"></td> | |
</tr> | |
<tr> | |
<td> | |
<input type="checkbox" data-privacy="1" name="privacy" value="1"> | |
</td> | |
<td> | |
Eu concordo com as todas as politicas do mundo carai | |
</td> | |
</tr> | |
<tr> | |
<td> | |
<input type="checkbox" data-privacy="1" name="communications" value="1"> | |
</td> | |
<td> | |
Eu concordo em receber essas bosta de offerta | |
</td> | |
</tr> | |
<tr> | |
<td colspan="2" align="right"> | |
<br /> | |
<input type="submit" value="Enviar dados" /> | |
</td> | |
</tr> | |
</table> | |
</form> | |
<script type="text/javascript" async src="https://dk9suync0k2va.cloudfront.net/js/loader-scripts/f9375dfc-96b4-4415-bffa-c6638f0e6ca9-loader.js" ></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment