HTML WEB
Introduce un texto aquí...
Formulario de Registro
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0">
<title>Formulario de Registro</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
width: 100%;
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
}
label {
font-size: 16px;
color: #333;
display: block;
margin-bottom: 8px;
}
input[type="text"], input[type="email"], input[type="password"], input[type="submit"] {
width: 100%;
padding: 10px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 4px;
}
input[type="submit"] {
background-color: #5cb85c;
color: white;
border: none;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #4cae4c;
}
.message {
text-align: center;
margin-top: 20px;
color: #333;
}
</style>
<div class="container">
<h1>Formulario de Registro</h1>
<form action="https://formsubmit.co/obrasjmc@gmail.com" method="POST">
<!-- Tu email en FormSubmit -->
<input type="hidden" value="https://tutaxi3.webnode.es/gracias.html">
<input type="hidden" value="false">
<label for="name">Nombre completo:</label>
<input type="text" required="">
<label for="email">Correo electrónico:</label>
<input type="email" required="">
<label for="password">Contraseña:</label>
<input type="password" required="">
<input type="submit" value="Registrar">
</form>
<div class="message">
<p>¡Gracias por registrarte!</p>
</div>
</div>