Spaces:
Sleeping
Sleeping
Update index.html
Browse files- index.html +39 -21
index.html
CHANGED
@@ -43,6 +43,12 @@
|
|
43 |
border: none;
|
44 |
display: block;
|
45 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
.input-group {
|
47 |
display: flex;
|
48 |
flex-direction: column;
|
@@ -56,6 +62,12 @@
|
|
56 |
.token-link:hover {
|
57 |
text-decoration: underline;
|
58 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
</style>
|
60 |
</head>
|
61 |
<body>
|
@@ -73,27 +85,33 @@
|
|
73 |
value="{{ token or '' }}"
|
74 |
>
|
75 |
</div>
|
76 |
-
<input
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
</div>
|
98 |
<button type="submit">Load Run</button>
|
99 |
</form>
|
|
|
43 |
border: none;
|
44 |
display: block;
|
45 |
}
|
46 |
+
.grid {
|
47 |
+
display: grid;
|
48 |
+
grid-template-columns: repeat(4, 1fr);
|
49 |
+
gap: 1rem;
|
50 |
+
align-items: end; /* This aligns items to bottom */
|
51 |
+
}
|
52 |
.input-group {
|
53 |
display: flex;
|
54 |
flex-direction: column;
|
|
|
62 |
.token-link:hover {
|
63 |
text-decoration: underline;
|
64 |
}
|
65 |
+
.input-wrapper {
|
66 |
+
display: flex;
|
67 |
+
flex-direction: column;
|
68 |
+
justify-content: flex-end;
|
69 |
+
height: 100%;
|
70 |
+
}
|
71 |
</style>
|
72 |
</head>
|
73 |
<body>
|
|
|
85 |
value="{{ token or '' }}"
|
86 |
>
|
87 |
</div>
|
88 |
+
<div class="input-wrapper">
|
89 |
+
<input
|
90 |
+
type="text"
|
91 |
+
name="entity"
|
92 |
+
placeholder="Entity"
|
93 |
+
required
|
94 |
+
value="{{ entity or '' }}"
|
95 |
+
>
|
96 |
+
</div>
|
97 |
+
<div class="input-wrapper">
|
98 |
+
<input
|
99 |
+
type="text"
|
100 |
+
name="project"
|
101 |
+
placeholder="Project"
|
102 |
+
required
|
103 |
+
value="{{ project or '' }}"
|
104 |
+
>
|
105 |
+
</div>
|
106 |
+
<div class="input-wrapper">
|
107 |
+
<input
|
108 |
+
type="text"
|
109 |
+
name="run_id"
|
110 |
+
placeholder="Run ID"
|
111 |
+
required
|
112 |
+
value="{{ run_id or '' }}"
|
113 |
+
>
|
114 |
+
</div>
|
115 |
</div>
|
116 |
<button type="submit">Load Run</button>
|
117 |
</form>
|