Skip to content

Instantly share code, notes, and snippets.

@amaweb-unifesp
Created May 24, 2025 02:23
Show Gist options
  • Save amaweb-unifesp/41dd4802cc836d54be24b195ddf82457 to your computer and use it in GitHub Desktop.
Save amaweb-unifesp/41dd4802cc836d54be24b195ddf82457 to your computer and use it in GitHub Desktop.
<form>
<div>
<label for="name">Nome Completo:</label>
<input type="text" id="name" name="name" autocomplete="name">
</div>
<div>
<label for="email">Email:</label>
<input type="email" id="email" name="email" autocomplete="email">
</div>
<div>
<label for="phone">Telefone:</label>
<input type="tel" id="phone" name="phone" autocomplete="tel">
</div>
<div>
<label for="age">Idade:</label>
<input type="number" id="age" name="age" autocomplete="bday">
</div>
<div>
<label for="dob">Data de Nascimento:</label>
<input type="date" id="dob" name="dob" autocomplete="bday">
</div>
<button type="submit">Enviar</button>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment