2024-05-06 13:38:56 +00:00
|
|
|
import SubirPDF from "./SubirPDF";
|
|
|
|
import React from 'react';
|
2024-05-12 22:23:07 +00:00
|
|
|
import './Preinscripcion.css'
|
2024-05-16 15:36:15 +00:00
|
|
|
import Encabezado from "./Encabezado";
|
2024-05-06 13:38:56 +00:00
|
|
|
|
|
|
|
const App = () => {
|
|
|
|
return (
|
2024-05-12 22:23:07 +00:00
|
|
|
<>
|
2024-05-16 15:36:15 +00:00
|
|
|
<div id="bodyPre">
|
|
|
|
<Encabezado/>
|
2024-05-12 22:23:07 +00:00
|
|
|
<h1 id="h1Pre">Proceso de Preinscripción</h1>
|
2024-05-16 15:36:15 +00:00
|
|
|
<p id="p1Pre">¡Bienvenido a esta gran comunidad estudiantil!</p>
|
|
|
|
<p id="p2Pre">Para dar seguimiento al proceso de preinscripción es necesario que subas los siguientes documentos en formato pdf que se te solicitan.</p>
|
|
|
|
<label id="labelPre">Certificado de bachillerato</label>
|
2024-05-12 22:23:07 +00:00
|
|
|
<div>
|
|
|
|
<SubirPDF/>
|
2024-05-16 15:36:15 +00:00
|
|
|
</div>
|
|
|
|
<label id="labelPre">Acta de nacimiento certificada</label>
|
|
|
|
<div>
|
|
|
|
<SubirPDF/>
|
|
|
|
</div>
|
|
|
|
<label id="labelPre">Clave Única de Registro de Población (CURP)</label>
|
|
|
|
<div>
|
|
|
|
<SubirPDF/>
|
|
|
|
</div>
|
|
|
|
<footer className='footerOE'>
|
|
|
|
© 2024 Universidad Filadelfia. Todos los derechos reservados.
|
|
|
|
</footer>
|
|
|
|
</div>
|
2024-05-12 22:23:07 +00:00
|
|
|
</>
|
2024-05-06 13:38:56 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default App;
|