Skip to content

Instantly share code, notes, and snippets.

@rhogeranacleto
Last active April 20, 2021 16:47
Show Gist options
  • Save rhogeranacleto/f4d02295d3a50226ab060ed4b239466f to your computer and use it in GitHub Desktop.
Save rhogeranacleto/f4d02295d3a50226ab060ed4b239466f to your computer and use it in GitHub Desktop.
production intetration
<!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 que existe
</td>
</tr>
<tr>
<td>
<input type="checkbox" data-privacy="1" name="communications" value="1">
</td>
<td>
Eu concordo em receber essas de offerta tudo que tiver ai
</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/92d6ddee-cece-4fec-b8fb-7f833c684ba6-loader.js" ></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment