diff --git a/app/Resources/views/base_app.html.twig b/app/Resources/views/base_app.html.twig new file mode 100644 index 0000000..04bb74f --- /dev/null +++ b/app/Resources/views/base_app.html.twig @@ -0,0 +1,79 @@ + + + + + {% block title %}CEA | UBV!{% endblock %} + {% block stylesheets %} + + + + + {% endblock %} + + + + {% block navegacion %} + + + {% endblock %} + + + + {% block submenu %} + + + + + {% endblock %} + + + {% block body %}{% endblock %} + + {% block javascripts %} + + + {% endblock %} + + diff --git a/app/Resources/views/cea/index.html.twig b/app/Resources/views/cea/index.html.twig new file mode 100644 index 0000000..5ae085a --- /dev/null +++ b/app/Resources/views/cea/index.html.twig @@ -0,0 +1,50 @@ +{% extends 'base_app.html.twig' %} +{% block body %} + +
+ +
+
+ {% if not adscrito %} +
+ + Información! Su solicitud de adscripción se encuentra en revisión. + Tan pronto sea activada, se le notificará por el correo institucional y podrá + disfrutar de los servicios que ofrecemos +
+ {%endif %} +
+
+
+
+

CEA@UBV

+
+ +
+
+
+ +
+ Estimado Docente, le damos la más cordial bienvenida al Sistema del Centro de Estudios Ambientales (CEA) de la Universidad Bolivariana de Venezuela (UBV) CEA@UBV. + +
+ +
+ + +
+
+
+ +
+
+ + + +
+
+
+
+
+ +{% endblock %} diff --git a/app/Resources/views/registration/register.html.twig b/app/Resources/views/registration/register.html.twig index 61118b4..06e3873 100644 --- a/app/Resources/views/registration/register.html.twig +++ b/app/Resources/views/registration/register.html.twig @@ -1,17 +1,8 @@ -{% extends 'base.html.twig' %} - -{% block body %} - {% form_theme form 'bootstrap_3_horizontal_layout.html.twig' %} -
- {{ form_start(form) }} - {{ form_widget(form) }} -
- - -{% endblock %} +{% extends 'base_app.html.twig' %} {% block stylesheets %} {{ parent() }} +