Skip to content

Commit

Permalink
Fix title on login page
Browse files Browse the repository at this point in the history
  • Loading branch information
slawkens committed Jun 11, 2024
1 parent c245761 commit 3fadf87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 2 additions & 0 deletions system/pages/account/base.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

if(!$logged)
{
$title = 'Login';

if(!empty($errors))
$twig->display('error_box.html.twig', array('errors' => $errors));

Expand Down
2 changes: 0 additions & 2 deletions system/pages/account/login.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
return;
}

$title = 'Login';

$login_account = $_POST['account_login'];
$login_password = $_POST['password_login'];
$remember_me = isset($_POST['remember_me']);
Expand Down

0 comments on commit 3fadf87

Please sign in to comment.