File size: 1,334 Bytes
bc43823 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
<!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> |