Correct styles on admin panels and enter triggers submission
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 1m34s

This commit is contained in:
2026-03-10 12:41:45 +00:00
parent 7991c80176
commit 14cacec1f5
7 changed files with 19 additions and 14 deletions

View File

@@ -27,8 +27,8 @@ function handleLogout() {
</div>
<div v-else class="flex flex-col">
<h1>Login</h1>
<input type="text" v-model="username" placeholder="Username" />
<input type="password" v-model="password" placeholder="Password" />
<input type="text" v-model="username" placeholder="Username" @keyup.enter="handleLogin" />
<input type="password" v-model="password" placeholder="Password" @keyup.enter="handleLogin" />
<Button @click="handleLogin">Log In</Button>
</div>
</template>