🐛 fix (auth): fix password input type and button variant
This commit is contained in:
@@ -38,13 +38,10 @@ function onSubmit(event: Event) {
|
||||
<div class="grid gap-2">
|
||||
<div class="flex items-center">
|
||||
<Label for="password"> Password </Label>
|
||||
<NuxtLink to="/forgot-password" class="ml-auto inline-block text-sm underline">
|
||||
Forgot your password?
|
||||
</NuxtLink>
|
||||
</div>
|
||||
<!-- <PasswordInput id="password" v-model="password" /> -->
|
||||
<Input id="password" v-model="password" type="password" :disabled="isLoading" />
|
||||
</div>
|
||||
<Button type="submit" class="w-full" :disabled="isLoading">
|
||||
<Button type="submit" variant="outline" class="w-full" :disabled="isLoading">
|
||||
<Loader2 v-if="isLoading" class="mr-2 h-4 w-4 animate-spin" />
|
||||
Login
|
||||
</Button>
|
||||
|
||||
Reference in New Issue
Block a user