computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
748 B
31 lines
748 B
--- |
|
import Divider from './Divider.astro'; |
|
import EmailLoginForm from '../AuthenticationFlow/EmailLoginForm'; |
|
import GithubLogin from './GithubLogin.astro'; |
|
import GoogleLogin from './GoogleLogin.astro'; |
|
--- |
|
|
|
<div> |
|
<div class='text-center'> |
|
<h2 class='text-2xl font-semibold leading-5 text-slate-900'> |
|
Welcome back |
|
</h2> |
|
<p class='mt-2 text-sm leading-4 text-slate-600'> |
|
Please enter your details. |
|
</p> |
|
</div> |
|
|
|
<div class='mt-10 space-y-2'> |
|
<GithubLogin /> |
|
<GoogleLogin /> |
|
</div> |
|
|
|
<Divider /> |
|
|
|
<EmailLoginForm client:load /> |
|
|
|
<div class='mt-6 text-center text-sm text-slate-600'> |
|
Don't have an account?{' '} |
|
<a href='/signup' class='font-medium text-[#4285f4]'> Sign up</a> |
|
</div> |
|
</div>
|
|
|