Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@

- コンテナを起動し、webコンテナとdbコンテナが起動しているか確認します。

`docker compose up - d`
`docker compose up -d`

`docker compose ps`

Expand Down
2 changes: 2 additions & 0 deletions src/lib/components/AuthForm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@
disabled={$submitting || isSubmitting}
required
class="ps-10"
autocomplete="username"
>
{#snippet left()}
<CirCleUserRound class="w-5 h-5" tabindex={UNFOCUSABLE} />
Expand Down Expand Up @@ -167,6 +168,7 @@
disabled={$submitting || isSubmitting}
required
class="ps-10"
autocomplete={isLoginForm(title) ? 'current-password' : 'new-password'}
>
<!-- Show / hide password -->
{#snippet left()}
Expand Down
Loading