D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
markniuj
/
bazmeasar.com
/
admin
/
Filename :
index.php
back
Copy
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Login</title> <style> body { font-family: Arial, sans-serif; background-color: #f4f4f4; margin: 0; display: flex; justify-content: center; align-items: center; height: 100vh; } form { max-width: 650px; background-color: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } label { display: block; margin-bottom: 8px; } input { width: 100%; padding: 10px; margin-bottom: 16px; box-sizing: border-box; } input[type="submit"] { background-color: #4caf50; color: #fff; cursor: pointer; } input[type="submit"]:hover { background-color: #45a049; } a { color: #1e88e5; } </style> </head> <body> <form method="post" action="login_process.php"> <h2 style="text-align: center;">Login</h2> <?php // Check if there's an error message to display if (isset($_GET['error'])) { $error = $_GET['error']; echo '<p style="color: red; text-align: center;">' . $error . '</p>'; } ?> <label for="username">Username:</label> <input type="text" name="username" required> <label for="password">Password:</label> <input type="password" name="password" required> <input type="submit" value="Login"> </form> </body> </html>