layout


SUBMITTED BY: wande1son

DATE: March 28, 2024, 10:22 p.m.

FORMAT: Text only

SIZE: 1.5 kB

HITS: 144

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>VPN Login</title>
  7. <style>
  8. body {
  9. font-family: Arial, sans-serif;
  10. margin: 0;
  11. padding: 0;
  12. background-color: #f4f4f4;
  13. }
  14. .container {
  15. width: 100%;
  16. max-width: 400px;
  17. margin: 100px auto;
  18. background-color: #fff;
  19. border-radius: 8px;
  20. padding: 20px;
  21. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  22. }
  23. h2 {
  24. text-align: center;
  25. }
  26. input[type="text"],
  27. input[type="password"] {
  28. width: 100%;
  29. padding: 10px;
  30. margin: 10px 0;
  31. border: 1px solid #ccc;
  32. border-radius: 5px;
  33. box-sizing: border-box;
  34. }
  35. input[type="submit"] {
  36. width: 100%;
  37. padding: 10px;
  38. margin-top: 10px;
  39. border: none;
  40. border-radius: 5px;
  41. background-color: #007bff;
  42. color: #fff;
  43. cursor: pointer;
  44. }
  45. input[type="submit"]:hover {
  46. background-color: #0056b3;
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <div class="container">
  52. <h2>VPN Login</h2>
  53. <form>
  54. <input type="text" name="username" placeholder="Username" required>
  55. <input type="password" name="password" placeholder="Password" required>
  56. <input type="submit" value="Login">
  57. </form>
  58. </div>
  59. </body>
  60. </html>

comments powered by Disqus