Skip to content

Commit 276dcc2

Browse files
authored
Fixed error message in login page (hestiacp#3554)
1 parent e189251 commit 276dcc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/login/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ function authenticate_user($user, $password, $twofa = "") {
269269
$output,
270270
$return_var,
271271
);
272-
$error = "<p class=\"error\">" . _("Invalid or missing 2FA token");
272+
$error = _("Invalid or missing 2FA token");
273273
if (empty($twofa)) {
274274
$_SESSION["login"]["username"] = $user;
275275
$_SESSION["login"]["password"] = $password;

0 commit comments

Comments
 (0)