Created
June 23, 2020 14:18
-
-
Save rhogeranacleto/1f9d792feabdd169e933240127a6a02b to your computer and use it in GitHub Desktop.
staging
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 2.0</title> | |
<style> | |
body { | |
padding: 50px; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Formulários Integrados 2.0</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://d2umgtt5tsqx05.cloudfront.net/js/loader-scripts/1787b272-4339-4b8c-a14c-265b4ebc1662-loader.js" ></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment