bdjwhdwjb commited on
Commit
1e7ef3f
·
verified ·
1 Parent(s): 1127c08

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +72 -19
index.html CHANGED
@@ -1,19 +1,72 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Login Page</title>
7
+ <style>
8
+ /* styles.css */
9
+ body {
10
+ font-family: Arial, sans-serif;
11
+ background-color: #f4f4f4;
12
+ display: flex;
13
+ justify-content: center;
14
+ align-items: center;
15
+ height: 100vh;
16
+ margin: 0;
17
+ }
18
+
19
+ .login-container {
20
+ background: white;
21
+ padding: 20px;
22
+ border-radius: 5px;
23
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
24
+ }
25
+
26
+ .form-group {
27
+ margin-bottom: 15px;
28
+ }
29
+
30
+ label {
31
+ display: block;
32
+ margin-bottom: 5px;
33
+ }
34
+
35
+ input {
36
+ width: 100%;
37
+ padding: 8px;
38
+ box-sizing: border-box;
39
+ }
40
+
41
+ button {
42
+ width: 100%;
43
+ padding: 10px;
44
+ background-color: #5cb85c;
45
+ color: white;
46
+ border: none;
47
+ border-radius: 5px;
48
+ cursor: pointer;
49
+ }
50
+
51
+ button:hover {
52
+ background-color: #4cae4c;
53
+ }
54
+ </style>
55
+ </head>
56
+ <body>
57
+ <div class="login-container">
58
+ <h2>Login</h2>
59
+ <form action="#" method="post">
60
+ <div class="form-group">
61
+ <label for="username">Username:</label>
62
+ <input type="text" id="username" name="username" required>
63
+ </div>
64
+ <div class="form-group">
65
+ <label for="password">Password:</label>
66
+ <input type="password" id="password" name="password" required>
67
+ </div>
68
+ <button type="submit">Login</button>
69
+ </form>
70
+ </div>
71
+ </body>
72
+ </html>