diff --git a/frontend/src/Encabezado.jsx b/frontend/src/Encabezado.jsx index fef6524..aca34f9 100644 --- a/frontend/src/Encabezado.jsx +++ b/frontend/src/Encabezado.jsx @@ -1,7 +1,7 @@ import React from "react"; import './Encabezado.css'; -const Encabezado = () => { +function Encabezado(){ return (
diff --git a/frontend/src/Registro.css b/frontend/src/Registro.css index be0c438..c85fba2 100644 --- a/frontend/src/Registro.css +++ b/frontend/src/Registro.css @@ -13,7 +13,7 @@ padding: 10px; } - .formulario h4{ + .formulario h4 { font-size: 20px; font-style: Jockey One; color: #000000; @@ -22,68 +22,91 @@ .form { - margin-top: 20px; /* Espacio entre el h5 y el formulario */ + margin-top: 20px; + /* Espacio entre el h5 y el formulario */ padding: 10px; display: flex; - flex-wrap: wrap; /* Permite que los elementos se envuelvan si no caben en una sola línea */ + flex-wrap: wrap; + /* Permite que los elementos se envuelvan si no caben en una sola línea */ } .form { - margin-top: 20px; /* Espacio entre el h5 y el formulario */ + margin-top: 20px; + /* Espacio entre el h5 y el formulario */ padding: 10px; display: flex; - flex-wrap: wrap; /* Permitir que los elementos se envuelvan en filas */ - justify-content: space-between; /* Distribuir los elementos en tres columnas */ + flex-wrap: wrap; + /* Permitir que los elementos se envuelvan en filas */ + justify-content: space-between; + /* Distribuir los elementos en tres columnas */ } - + .campo { - width: calc(33.33% - 10px); /* Ancho de cada campo (menos el espacio entre ellos) */ - margin-bottom: 20px; /* Espacio entre campos */ + width: calc(33.33% - 10px); + /* Ancho de cada campo (menos el espacio entre ellos) */ + margin-bottom: 20px; + /* Espacio entre campos */ display: flex; - flex-direction: column; /* Cambiar la dirección del flujo a vertical */ - overflow: hidden; /* Oculta cualquier contenido que se desborde del área del input */ + flex-direction: column; + /* Cambiar la dirección del flujo a vertical */ + overflow: hidden; + /* Oculta cualquier contenido que se desborde del área del input */ } - + .campo label { padding: 2%; font-weight: bold; } - + + h2{ + padding: 30%; + } + .h4{ + padding: 30%; + align-items: center; + } + .campo input[type="text"], - .campo input[type="number"], - .campo select, - .campo input[type="password"], - .campo input[type="date"], - .campo input[type="email"] { - width: 100%; /* Ocupar todo el ancho disponible */ + .campo input[type="correo"], + .campo input[type="number"] { + width: 100%; + /* Ocupar todo el ancho disponible */ padding: 5px; border-radius: 5px; border: 1px solid #ccc; box-sizing: border-box; font-size: 16px; transition: border-color 0.3s ease; - margin-top: 5px; /* Espacio entre el label y el input */ + margin-top: 5px; + /* Espacio entre el label y el input */ } - - - .btnenviar{ - text-align: center; /* Centra horizontalmente el contenido */ + + + .btnenviar { + text-align: center; + /* Centra horizontalmente el contenido */ } .boton { - text-align: center; + display: flex; + margin-left: 45%; + justify-content: center; + align-items: center; + width: 150px; + /* Ajusta el ancho según sea necesario */ + height: 40px; + /* Ajusta la altura según sea necesario */ background-color: #007bff; color: white; border: none; - padding: 15px 30px; + padding: 5px 10px; cursor: pointer; border-radius: 5px; - font-weight: bold; /* Hace que el texto esté en negrita */ + font-weight: bold; + /* Hace que el texto esté en negrita */ } - + .boton:hover { background-color: #0056b3; - } - - \ No newline at end of file + } \ No newline at end of file diff --git a/frontend/src/Registro.jsx b/frontend/src/Registro.jsx index b4dc63c..0bc5b40 100644 --- a/frontend/src/Registro.jsx +++ b/frontend/src/Registro.jsx @@ -1,117 +1,39 @@ import React from 'react'; import './Registro.css'; // Estilo para el formulario -const Registro = () => { +function Registro(){ return ( -
-

Registro

-

Datos Personales

-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
-
-

Datos de Tutor

-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
+
+

Registro

+

Datos Personales

+
+
+ +
-
- +
+ +
+
+ + +
+
+ + +
+
+ + +
+ +
+ +
+ ); } diff --git a/frontend/src/main.jsx b/frontend/src/main.jsx index 66fdbe8..dc96d8b 100644 --- a/frontend/src/main.jsx +++ b/frontend/src/main.jsx @@ -1,12 +1,9 @@ import React from 'react' import ReactDOM from 'react-dom/client' import OfertaEducativa from './OfertaEducativa.jsx' -import Preinscripcion from './Preinscripcion.jsx' -import SubirPDF from './SubirPDF.jsx' -import General from './General.jsx' import './Registro.css' -import './login.css'; +import './login.css' ReactDOM.createRoot(document.getElementById('root')).render(