На локальном сервере OSPanel страницы с регистрацией и авторизацией работали, но после загрузки на хостинг почему то стали просто перекидывать по Url на /account/login, база данных подключена корректно, версии php одинаковые.
<?php
ULogin(0);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Авторизация</title>
<style>
<?php style() ?>
.form-block {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 74vh;
}
form {
border: 1px solid black;
padding: 30px;
border-radius: 10px;
width: 17%;
height: 57%;
box-shadow: 8px 8px 8px 0 rgba(0,0,0,0.2);
}
.form-group input{
width: 100%;
box-sizing: border-box;
height: 40px;
border-radius: 10px;
border: 1px solid #979797;
}
.form-group {
margin-bottom: 35px;
}
label {
display: block;
margin-bottom: 5px;
font-size: 20px;
}
.button-reg{
border: none;
border-radius: 20px;
background-color: #4848EB;
font-size: 20px;
font-family: Inter, sans-serif;
font-weight: bold;
color: #fff;
margin: 20px 0 0;
}
.pass-text{
margin: 5px 0 ;
font-size: 10px;
color: #737373;
font-family: Montserrat, sans-serif;
font-weight: light;
}
.check-label {
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
margin-top: -20px; /* Задаем отрицательный отступ, чтобы поднять чекбокс */
}
.check-label input[type="checkbox"] {
margin-right: 5px; /* Отступ между чекбоксом и текстом */
}
.res-text{
display: flex;
align-items: center;
justify-content: center;
color: #558cb7;
text-decoration: none;
margin-top: 15px;
}
</style>
</head>
<body>
<?php menu();
MessageShow(); ?>
<div class="form-block">
<form action="/account/login" method="POST">
<div class="form-group">
<label for="login">Логин</label>
<input type="text" id="login" name="login" maxlength="20" pattern="[A-Za-z0-9]{3,20}" title="не менее 3 и не более 20 латынских символов или цифр" required>
</div>
<div class="form-group">
<label for="password">Пароль</label>
<input type="password" id="password" name="password" maxlength="25" pattern="[A-Za-z0-9]{8,25}" title="не менее 8 и не более 25 латынских символов или цифр" required>
<p class="pass-text">Пароли должны содержать не менее восьми символов, включая как минимум 1 букву и 1 цифру.</p>
<input type="submit" name="enter" value="Вход" class="button-reg">
</div>
<label class="check-label">
<input type="checkbox" name="remember">
Запомнить меня
</label>
<a href="/restore" class="res-text">Забыли пароль?</a>
</form>
</div>
</body>
</html>