Spaces:
Sleeping
Sleeping
Update templates/index.html
Browse files- templates/index.html +60 -0
templates/index.html
CHANGED
@@ -9,6 +9,66 @@
|
|
9 |
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
10 |
</head>
|
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
<body>
|
13 |
<div class="container">
|
14 |
|
|
|
9 |
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
10 |
</head>
|
11 |
|
12 |
+
|
13 |
+
body {
|
14 |
+
font-family: 'Roboto', sans-serif;
|
15 |
+
background: linear-gradient(135deg, #f4c542, #ff8f6a);
|
16 |
+
margin: 0;
|
17 |
+
display: flex;
|
18 |
+
justify-content: center;
|
19 |
+
align-items: center;
|
20 |
+
height: 100vh;
|
21 |
+
text-align: center;
|
22 |
+
}
|
23 |
+
.container {
|
24 |
+
background-color: #87ceeb; /* Light blue */
|
25 |
+
padding: 40px 50px;
|
26 |
+
border-radius: 10px;
|
27 |
+
width: 400px;
|
28 |
+
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
29 |
+
}
|
30 |
+
h1 {
|
31 |
+
font-size: 30px;
|
32 |
+
font-weight: bold;
|
33 |
+
color: #ff6a00;
|
34 |
+
}
|
35 |
+
label {
|
36 |
+
font-size: 16px;
|
37 |
+
margin-top: 20px;
|
38 |
+
display: block;
|
39 |
+
text-align: left;
|
40 |
+
font-weight: bold;
|
41 |
+
}
|
42 |
+
input[type="text"] {
|
43 |
+
width: 100%;
|
44 |
+
padding: 12px;
|
45 |
+
font-size: 16px;
|
46 |
+
border: 2px solid #ccc;
|
47 |
+
border-radius: 8px;
|
48 |
+
margin-top: 8px;
|
49 |
+
box-sizing: border-box;
|
50 |
+
}
|
51 |
+
input[type="text"]:focus {
|
52 |
+
border-color: #ff6a00;
|
53 |
+
outline: none;
|
54 |
+
}
|
55 |
+
.info {
|
56 |
+
margin-top: 20px;
|
57 |
+
font-size: 16px;
|
58 |
+
color: #ff6a00;
|
59 |
+
font-weight: bold;
|
60 |
+
}
|
61 |
+
.status {
|
62 |
+
font-size: 14px;
|
63 |
+
color: gray;
|
64 |
+
margin-top: 20px;
|
65 |
+
}
|
66 |
+
.image-logo {
|
67 |
+
width: 80px;
|
68 |
+
margin-bottom: 20px;
|
69 |
+
}
|
70 |
+
</style>
|
71 |
+
</head>
|
72 |
<body>
|
73 |
<div class="container">
|
74 |
|