1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-25 15:59:38 +02:00

feat: add password validation and error messages, enhance CityCard styling, and update localization for email and password prompts

This commit is contained in:
Sean Morley 2025-01-09 18:25:51 -05:00
parent 22790ae7c0
commit 013a2cc751
12 changed files with 154 additions and 24 deletions

View file

@ -45,7 +45,9 @@
<div class="card-body">
<h2 class="card-title overflow-ellipsis">{city.name}</h2>
<div class="flex flex-wrap gap-2">
<div class="badge badge-primary">{city.id}</div>
<div class="badge badge-neutral-300">{city.id}</div>
</div>
<div class="card-actions justify-end">
{#if !visited}
<button class="btn btn-primary" on:click={markVisited}
>{$t('adventures.mark_visited')}</button
@ -55,9 +57,5 @@
<button class="btn btn-warning" on:click={removeVisit}>{$t('adventures.remove')}</button>
{/if}
</div>
<div class="card-actions justify-end">
<!-- <button class="btn btn-info" on:click={moreInfo}>More Info</button> -->
</div>
</div>
</div>