cambios a registro
This commit is contained in:
parent
bef02cf8ff
commit
30703d1ad1
|
@ -1,7 +1,7 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import './Registro.css'; // Estilo para el formulario
|
import './Registro.css'; // Estilo para el formulario
|
||||||
|
|
||||||
function Registro(){
|
const Registro = () => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<body className="bodyRegistro">
|
<body className="bodyRegistro">
|
||||||
|
@ -112,37 +112,7 @@ function Registro(){
|
||||||
<input type="submit" className="boton" value="Registrar" />
|
<input type="submit" className="boton" value="Registrar" />
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
=
|
|
||||||
<div className="formulario">
|
|
||||||
<h2>Registro</h2>
|
|
||||||
<div><h4>Datos Personales</h4></div>
|
|
||||||
<form className='form'>
|
|
||||||
<div className="campo">
|
|
||||||
<label htmlFor="nombre">Nombre:</label>
|
|
||||||
<input type="text" id="nombre" name='nombre' />
|
|
||||||
</div>
|
|
||||||
<div className="campo">
|
|
||||||
<label htmlFor="apellidoPaterno">Apellido Paterno:</label>
|
|
||||||
<input type="text" id="apellidoPaterno" name='apellidoPaterno' />
|
|
||||||
</div>
|
|
||||||
<div className="campo">
|
|
||||||
<label htmlFor="apellidoMaterno">Apellido Materno:</label>
|
|
||||||
<input type="text" id="apellidoMaterno" name="apellidoMaterno" />
|
|
||||||
</div>
|
|
||||||
<div className="campo">
|
|
||||||
<label htmlFor="nacionalidad">Nacionalidad:</label>
|
|
||||||
<input type="text" id="nacionalidad" name="nacionalidad" />
|
|
||||||
</div>
|
|
||||||
<div className="campo">
|
|
||||||
<label htmlFor="correo">Correo:</label>
|
|
||||||
<input type="correo" id="correo" name="correo" />
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
<div>
|
|
||||||
<button type="submit" className='boton'>Registrarse</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Registro
|
export default Registro;
|
||||||
|
|
Loading…
Reference in New Issue