franloza / internprise

Final project of the subject Web Applications in Universidad Complutense de Madrid. Internprise is an application that put in contact students, universities and enterprises thanks to internship programs. Graded with honors to two of our members
MIT License
1 stars 2 forks source link

Arregar Titlebar #6

Closed franloza closed 8 years ago

franloza commented 8 years ago

Los iconos del titlebar no se ven. No hace falta crear aun "settings.php" y "notifications.php". Si se tiene que linkar el botón de logout al método apropiado (Ya está implementado)

franloza commented 8 years ago

Iconos ya se ven. Falta linkar el logout a su correspondiente icono.

pmdp commented 8 years ago

He pensado en como hacer el logout, pero no lo tengo muy claro, ¿¿habría que hacer un logout.php que llame a $app -> logout()?? Por que he intentado poner href="<?php $app -> logout(); ?>" en la etiqueta a que corresponde a la de deslogearse y no fula. Además tendría que llevar al index no?

franloza commented 8 years ago

Resuelto: Justo es la idea que has dicho tu pepe, pero en href una petición GET al mismo dashboard.php con logout como parametro. Se mete una condición: if(isset($_GET['logout])) {$app -> logout()};

Gracias!