Skip to content

Instantly share code, notes, and snippets.

@hugofabricio
Created September 9, 2013 17:04
Show Gist options
  • Save hugofabricio/6498532 to your computer and use it in GitHub Desktop.
Save hugofabricio/6498532 to your computer and use it in GitHub Desktop.
public function login()
{
// Ação de Login
if ($this->request->is('post')):
if ($this->Auth->login()):
$this->redirect($this->Auth->redirectUrl());
else:
$this->Session->setFlash('Usuário ou senha inválidos, tente novamente.');
endif;
endif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment