File Manager Lite
Dir:
/home/u540325668/domains/sostabazar.in/public_html/websites/ishwarComputer/public/login
Upload
[..]
index.php (2.17 KB)
Edit
Rename
Del
Edit: index.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>SostaBazar.in</title> <style> /* Internal CSS Styles */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f9; display: flex; justify-content: center; align-items: center; height: 100vh; } .container { text-align: center; background-color: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } .button { background-color: #4CAF50; /* Green color */ color: white; font-size: 16px; padding: 12px 24px; border: none; border-radius: 4px; cursor: pointer; margin-top: 20px; transition: background-color 0.3s ease; } .button:hover { background-color: #45a049; /* Darker green on hover */ } .link { margin-top: 20px; font-size: 18px; color: #1e90ff; /* Blue color for the link */ text-decoration: none; } .link:hover { text-decoration: underline; } </style> </head> <body> <div class="container"> <h2>Welcome to our New Website csp.sostabazar.in</h2> <p>Click the button to login our new link!</p> <a href="https://csp.sostabazar.in/login" class="link" > <button class="button">Login Page</button> </a> <!-- The clickable link will be revealed when the button is clicked --> <p id="linkContainer"></p> </div> <script> // JavaScript to display the clickable link after clicking the button function showLink() { const linkContainer = document.getElementById('linkContainer'); linkContainer.innerHTML = 'Our new link of this site is: <a href="https://csp.sostabazar.in/login" class="link" target="_blank">Click here</a>'; } </script> </body> </html>
Simpan