");
break;
default: $menus = array(); break;
diff --git a/panel_user/includes/formChagePass.php b/panel_user/includes/formChagePass.php
new file mode 100644
index 0000000..15c5adc
--- /dev/null
+++ b/panel_user/includes/formChagePass.php
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/panel_user/includes/formChangeEmail.php b/panel_user/includes/formChangeEmail.php
new file mode 100644
index 0000000..15c5adc
--- /dev/null
+++ b/panel_user/includes/formChangeEmail.php
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/panel_user/includes/formChangeName.php b/panel_user/includes/formChangeName.php
new file mode 100644
index 0000000..15c5adc
--- /dev/null
+++ b/panel_user/includes/formChangeName.php
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/panel_user/index.php b/panel_user/index.php
index fb2b397..5d8af39 100644
--- a/panel_user/index.php
+++ b/panel_user/index.php
@@ -3,8 +3,39 @@
//General Config File:
require_once('../assets/php/config.php');
- // IMPORTANTE:
- // VERIFICAR QUE EL USUARIO HA INICIADO SESIÓN, SI NO, MOSTRAR MENSAJE DE "ERROR"
+ //Controller file:
+ include_once('panelUser.php');
+
+ if($_SESSION["login"]){
+ switch($_GET["option"]){
+ case "manage_profile":
+ $reply = UserPanel::manage();
+ break;
+ case "purchases":
+ $reply = UserPanel::purchases();
+ break;
+ case "payment":
+ $reply = UserPanel::payment();
+ break;
+ case "delete_user";
+ $reply = UserPanel::delete();
+ break;
+ default:
+ $reply = '
+
Bienvenido al Panel de Usuario.
+
'."\n";
+ break;
+ }
+ }
+ else{
+ $reply = '
+
Debes iniciar sesión para ver tu Panel de Usuario.
+
Inicia Sesión si estás registrado.
+
+
Registrate si no lo habías hecho previamente.
+
+
'."\n";
+ }
?>
-
-
-
AQUÍ EL CONTENIDO DE CADA FUNCIONALIDAD.
-
Debe variar dinámicamente según el botón del panel izquierdo que se pulse (sin cargar una página diferente, aunque tendrá que recargar el contido, eso sí).