IWannaDieAsWell

shit

Apr 14th, 2023
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Login Page</title>
  5. <link rel="stylesheet" type="text/css" href="login.css">
  6. </head>
  7. <body>
  8. <div class="container">
  9. <div class="login-box">
  10. <form>
  11. <label for="username">Username:</label>
  12. <input type="text" id="username" name="username" required>
  13. <br>
  14. <label for="password">Password:</label>
  15. <input type="password" id="password" name="password" required>
  16. <br>
  17. <input type="submit" value="Login">
  18. </form>
  19. </div>
  20. </div>
  21. </body>
  22. </html>
  23.  
  24.  
  25. body {
  26. margin: 0;
  27. padding: 0;
  28. background: linear-gradient(to bottom, #00FF00, #FFFFFF);
  29. }
  30.  
  31. .container {
  32. display: flex;
  33. justify-content: center;
  34. align-items: center;
  35. height: 100vh;
  36. }
  37.  
  38. .login-box {
  39. background-color: #BEBEBE;
  40. padding: 30px;
  41. border-radius: 20px;
  42. }
  43.  
  44. h2 {
  45. text-align: center;
  46. margin-bottom: 20px;
  47. }
  48.  
  49. input[type="text"], input[type="password"], button[type="submit"] {
  50. display: block;
  51. width: 100%;
  52. margin-bottom: 10px;
  53. padding: 10px;
  54. border: none;
  55. border-radius: 5px;
  56. }
  57.  
  58. button[type="submit"] {
  59. background-color: #00FF00;
  60. color: #FFFFFF;
  61. font-weight: bold;
  62. cursor: pointer;
  63. }
  64.  
Advertisement
Add Comment
Please, Sign In to add comment