Spaces:
Sleeping
Sleeping
Update index.html
Browse files- index.html +28 -4
index.html
CHANGED
|
@@ -26,10 +26,34 @@
|
|
| 26 |
<main class="container">
|
| 27 |
<form method="POST">
|
| 28 |
<div class="grid">
|
| 29 |
-
<input
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
</div>
|
| 34 |
<button type="submit">Load Run</button>
|
| 35 |
</form>
|
|
|
|
| 26 |
<main class="container">
|
| 27 |
<form method="POST">
|
| 28 |
<div class="grid">
|
| 29 |
+
<input
|
| 30 |
+
type="text"
|
| 31 |
+
name="token"
|
| 32 |
+
placeholder="WandB Token"
|
| 33 |
+
required
|
| 34 |
+
value="{{ token or '' }}"
|
| 35 |
+
>
|
| 36 |
+
<input
|
| 37 |
+
type="text"
|
| 38 |
+
name="entity"
|
| 39 |
+
placeholder="Entity"
|
| 40 |
+
required
|
| 41 |
+
value="{{ entity or '' }}"
|
| 42 |
+
>
|
| 43 |
+
<input
|
| 44 |
+
type="text"
|
| 45 |
+
name="project"
|
| 46 |
+
placeholder="Project"
|
| 47 |
+
required
|
| 48 |
+
value="{{ project or '' }}"
|
| 49 |
+
>
|
| 50 |
+
<input
|
| 51 |
+
type="text"
|
| 52 |
+
name="run_id"
|
| 53 |
+
placeholder="Run ID"
|
| 54 |
+
required
|
| 55 |
+
value="{{ run_id or '' }}"
|
| 56 |
+
>
|
| 57 |
</div>
|
| 58 |
<button type="submit">Load Run</button>
|
| 59 |
</form>
|