cleaned up mobile styling and updated input action component
This commit is contained in:
parent
59fb81a42e
commit
a8488f111f
11 changed files with 112 additions and 56 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue