| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- require_once ($_SERVER['DOCUMENT_ROOT']."/inc/auth.utils.php");
- require_once ($_SERVER['DOCUMENT_ROOT']."/inc/languages/" . HTML_LANG . ".php");
- $error = '';
- // Использование
- $redirect_url = getSafeRedirectUrl(DEFAULT_PAGE);
- if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST['submit'])) {
- $login = trim($_POST['login']);
- $password = trim($_POST['password']);
- // validate if login is empty
- if (empty($login)) {
- $error .= '<p class="error">'.WEB_msg_login_hint.'.</p>';
- }
- // validate if password is empty
- if (empty($password)) {
- $error .= '<p class="error">'.WEB_msg_password_hint.'.</p>';
- }
- if (empty($error)) {
- if (login($db_link)) {
- $redirect_url = urldecode($redirect_url);
- header("Location: $redirect_url");
- }
- }
- }
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <title><?php echo WEB_site_title; ?> login</title>
- <link rel="stylesheet" type="text/css" href="/css/<?php echo HTML_STYLE.'.css'; ?>">
- <link rel="stylesheet" type="text/css" href="/login.css" >
- <meta http-equiv="content-type" content="application/xhtml+xml" />
- <meta charset="UTF-8" />
- </head>
- <body>
- <div class="login">
- <h1><?php echo WEB_msg_login; ?></h1>
- <form action="" method="post">
- <label for="username">
- <i class="fas fa-user"></i>
- </label>
- <input type="text" name="login" placeholder="<?php echo WEB_msg_username; ?>" id="login" required autofocus>
- <label for="password">
- <i class="fas fa-lock"></i>
- </label>
- <input type="password" name="password" placeholder="<?php echo WEB_msg_password; ?>" id="password" required>
- <input type="hidden" name="redirect_url" value="<?php print htmlspecialchars($redirect_url); ?>">
- <input type="submit" name="submit" value="<?php echo WEB_btn_login; ?>">
- </form>
- </div>
- </body>
- </html>
|