jtvidela commited on
Commit
ba58c11
·
verified ·
1 Parent(s): 7788cdd

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +13 -2
index.html CHANGED
@@ -23,11 +23,23 @@
23
  a:hover {
24
  background-color: #005BB5;
25
  }
 
 
 
 
 
 
 
 
 
 
 
26
  </style>
27
  </head>
28
  <body>
29
  <h1>Welcome to My Spaces!</h1>
30
- <!-- Login Form -->
 
31
  <form action="/login" method="POST">
32
  <label for="username">Username:</label><br>
33
  <input type="text" id="username" name="username" required><br>
@@ -59,4 +71,3 @@
59
  </script>
60
  </body>
61
  </html>
62
-
 
23
  a:hover {
24
  background-color: #005BB5;
25
  }
26
+ form {
27
+ margin-bottom: 20px;
28
+ }
29
+ input, button {
30
+ margin: 5px;
31
+ padding: 10px;
32
+ font-size: 16px;
33
+ }
34
+ #links {
35
+ display: none; /* Initially hidden, shown after successful login */
36
+ }
37
  </style>
38
  </head>
39
  <body>
40
  <h1>Welcome to My Spaces!</h1>
41
+
42
+ <!-- Login Form -->
43
  <form action="/login" method="POST">
44
  <label for="username">Username:</label><br>
45
  <input type="text" id="username" name="username" required><br>
 
71
  </script>
72
  </body>
73
  </html>