-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Page] [Form] Add with third-party logins form
- Loading branch information
Showing
5 changed files
with
86 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<template> | ||
<div class="container grid h-svh flex-col items-center justify-center bg-primary-foreground lg:max-w-none lg:px-0"> | ||
<div class="mx-auto flex w-full flex-col justify-center space-y-2 sm:w-[480px] lg:p-8"> | ||
<Card> | ||
<CardHeader> | ||
<CardTitle class="text-2xl">{{ $t('form.common.formWithThird') }}</CardTitle> | ||
<CardDescription>{{ $t('form.tip.formWithThird') }}</CardDescription> | ||
</CardHeader> | ||
<CardContent> | ||
<div class="grid gap-4"> | ||
<div class="grid gap-2"> | ||
<Label for="email">{{ $t('user.common.email') }}</Label> | ||
<Input id="email" type="email" :placeholder="$t('user.tip.emailHolder')" required/> | ||
</div> | ||
<div class="grid gap-2"> | ||
<div class="flex items-center"> | ||
<Label for="password">{{ $t('user.common.password') }}</Label> | ||
<a href="#" class="ml-auto inline-block text-sm underline">{{ $t('common.common.forgotPassword') }}?</a> | ||
</div> | ||
<Input id="password" type="password" required :placeholder="$t('user.tip.passwordHolder')"/> | ||
</div> | ||
<Button type="submit" class="w-full">{{ $t('common.common.signIn') }}</Button> | ||
<Button variant="outline" class="w-full">{{ $t('form.common.signInWithGoogle') }}</Button> | ||
</div> | ||
<div class="relative my-4"> | ||
<div class="absolute inset-0 flex items-center"> | ||
<span class="w-full border-t"/> | ||
</div> | ||
<div class="relative flex justify-center text-xs uppercase"> | ||
<span class="bg-background px-2 text-muted-foreground">{{ $t('user.common.continueWith') }}</span> | ||
</div> | ||
</div> | ||
<div class="flex items-center gap-2"> | ||
<Button variant='outline' class="w-full"> | ||
<Github class="mr-2 h-4 w-4"/> | ||
GitHub | ||
</Button> | ||
<Button variant='outline' class="w-full"> | ||
<Facebook class="mr-2 h-4 w-4"/> | ||
</Button> | ||
</div> | ||
<div class="mt-4 text-center text-sm"> | ||
{{ $t('common.tip.signInNoAccount') }} | ||
<RouterLink to="#" class="underline">{{ $t('common.common.signUp') }}</RouterLink> | ||
</div> | ||
</CardContent> | ||
</Card> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import { defineComponent } from 'vue' | ||
import { Button } from '@/components/ui/button' | ||
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '@/components/ui/card' | ||
import { Input } from '@/components/ui/input' | ||
import { Label } from '@/components/ui/label' | ||
import { Facebook, Github } from 'lucide-vue-next' | ||
export default defineComponent({ | ||
name: 'FormWithThird', | ||
components: { | ||
Facebook, Github, | ||
Button, | ||
Input, | ||
Label, | ||
Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle | ||
} | ||
}) | ||
</script> |