+15
frontend/src/routes/login/+page.svelte
+15
frontend/src/routes/login/+page.svelte
···
126
126
</div>
127
127
{/if}
128
128
</div>
129
+
130
+
<a href="/" class="back-link">← back to home</a>
129
131
</div>
130
132
</div>
131
133
···
261
263
padding: 0.15rem 0.4rem;
262
264
border-radius: var(--radius-sm);
263
265
font-size: 0.85em;
266
+
}
267
+
268
+
.back-link {
269
+
display: block;
270
+
text-align: center;
271
+
margin-top: 1.5rem;
272
+
color: var(--text-tertiary);
273
+
font-size: var(--text-sm);
274
+
text-decoration: none;
275
+
}
276
+
277
+
.back-link:hover {
278
+
color: var(--text-secondary);
264
279
}
265
280
266
281
@media (max-width: 480px) {