cleaned up mobile styling and updated input action component

This commit is contained in:
Edward Tirado Jr 2026-04-08 19:04:15 -05:00
parent 59fb81a42e
commit a8488f111f
11 changed files with 112 additions and 56 deletions

View file

@ -10,12 +10,22 @@ const handleLogin = () => login(email.value, password.value)
<form class="password-form" @submit.prevent="handleLogin">
<div class="form-group">
<label for="email">Email</label>
<input id="email" v-model="email" type="email"/>
<input
id="email"
v-model="email"
autocomplete="email"
type="email"
/>
</div>
<div class="form-group">
<label for="password">Password</label>
<input id="password" v-model="password" type="password"/>
<input
id="password"
v-model="password"
autocomplete="current-password"
type="password"
/>
</div>
<button type="submit">Submit</button>