| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Login</title> | |
| <link rel="shortcut icon" href="../public/img/Fav/favicon.ico" type="image/x-icon"> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700;900&display=swap" rel="stylesheet"> | |
| <!-- Boxicons --> | |
| <link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'> | |
| <!-- My CSS --> | |
| <link rel="stylesheet" href="./css/login.css"> | |
| </head> | |
| <body> | |
| <div class="login-container"> | |
| <div class="slider"> | |
| <div class="slider-text">Welcome To AM Panel</div> | |
| </div> | |
| <img src="./img/logo.svg" alt="Logo" class="logo"> | |
| <!-- Display error message if any --> | |
| <form action="index.php" method="post"> | |
| <input type="text" name="mobile" placeholder="Mobile*" required><br> | |
| <input type="password" name="password" placeholder="Password*" required><br> | |
| <input type="submit" value="Login"> | |
| </form> | |
| </div> | |
| </body> | |
| </html> | |