Formulario Basico
<!DOCTYPE html>
<html>
<head>
<title>Formularios HTML</title>
<meta charset="utf-8">
</head>
<body>
<form target="_blank" action="https://webhook.site/1b504107-e182-4dce-a3a1-f84687fa1e00">
<fieldset>
<legend>Autenticação</legend>
<div>
<label for="input_nome">Nome do Usuário:</label>
<input placeholder="Digite seu nome..." id="input_nome" type="text" name="username">
</div>
<div>
<label for="input_senha">Senha:</label>
<input id="input_senha" type="password" name="senha">
</div>
</fieldset>
<div>
<label for="sex_f">Sexo Biológico:</label>
<br>
<input type="radio" id="sex_f" name="sexo" value="feminino">
<label for="sex_f">Feminino</label>
<br>
<input type="radio" id="sex_m" name="sexo" value="masculino">
<label for="sex_m">Masculino</label>
</div>
<div>
<label for="input_data">Data Nascimento:</label>
<input type="date" id="input_data" name="data">
</div>
<div>
<label for="input_email">Email</label>
<input type="email" id="input_email" name="email">
</div>
<button type="submit">Enviar</button>
<button type="submit" formmethod="post">Enviar POST</button>
</form>
</body>
</html>