Spaces:
Sleeping
Sleeping
Update index.html
Browse files- index.html +9 -4
index.html
CHANGED
|
@@ -45,11 +45,16 @@
|
|
| 45 |
}
|
| 46 |
.input-group {
|
| 47 |
display: flex;
|
| 48 |
-
|
| 49 |
-
gap:
|
| 50 |
}
|
| 51 |
.token-link {
|
| 52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 53 |
}
|
| 54 |
</style>
|
| 55 |
</head>
|
|
@@ -59,6 +64,7 @@
|
|
| 59 |
<form method="POST">
|
| 60 |
<div class="grid">
|
| 61 |
<div class="input-group">
|
|
|
|
| 62 |
<input
|
| 63 |
type="text"
|
| 64 |
name="token"
|
|
@@ -66,7 +72,6 @@
|
|
| 66 |
required
|
| 67 |
value="{{ token or '' }}"
|
| 68 |
>
|
| 69 |
-
<a href="https://wandb.ai/authorize" target="_blank" class="token-link">Get Token</a>
|
| 70 |
</div>
|
| 71 |
<input
|
| 72 |
type="text"
|
|
|
|
| 45 |
}
|
| 46 |
.input-group {
|
| 47 |
display: flex;
|
| 48 |
+
flex-direction: column;
|
| 49 |
+
gap: 0.25rem;
|
| 50 |
}
|
| 51 |
.token-link {
|
| 52 |
+
color: #3B82F6;
|
| 53 |
+
text-decoration: none;
|
| 54 |
+
font-size: 0.9rem;
|
| 55 |
+
}
|
| 56 |
+
.token-link:hover {
|
| 57 |
+
text-decoration: underline;
|
| 58 |
}
|
| 59 |
</style>
|
| 60 |
</head>
|
|
|
|
| 64 |
<form method="POST">
|
| 65 |
<div class="grid">
|
| 66 |
<div class="input-group">
|
| 67 |
+
<a href="https://wandb.ai/authorize" target="_blank" class="token-link">Get Token</a>
|
| 68 |
<input
|
| 69 |
type="text"
|
| 70 |
name="token"
|
|
|
|
| 72 |
required
|
| 73 |
value="{{ token or '' }}"
|
| 74 |
>
|
|
|
|
| 75 |
</div>
|
| 76 |
<input
|
| 77 |
type="text"
|