mirror of
https://github.com/emailerfacu-spec/minix-front.git
synced 2026-04-11 14:50:44 -03:00
bueno masomenos terminada la interfaz de login y register
This commit is contained in:
@@ -1,2 +0,0 @@
|
||||
<h1>Welcome to SvelteKit</h1>
|
||||
<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>
|
||||
|
||||
9
src/routes/login/+page.svelte
Normal file
9
src/routes/login/+page.svelte
Normal file
@@ -0,0 +1,9 @@
|
||||
<script>
|
||||
import LoginForm from '@/components/ui/login-form/login-form.svelte';
|
||||
</script>
|
||||
|
||||
<div class="flex min-h-fit w-full items-center justify-center p-6 md:p-10">
|
||||
<div class="w-full max-w-sm">
|
||||
<LoginForm />
|
||||
</div>
|
||||
</div>
|
||||
1
src/routes/page.js
Normal file
1
src/routes/page.js
Normal file
@@ -0,0 +1 @@
|
||||
export const ssr = true;
|
||||
9
src/routes/register/+page.svelte
Normal file
9
src/routes/register/+page.svelte
Normal file
@@ -0,0 +1,9 @@
|
||||
<script>
|
||||
import SignupForm from '@/components/signup-form.svelte';
|
||||
</script>
|
||||
|
||||
<div class="flex min-h-fit w-full items-center justify-center p-6 md:p-10">
|
||||
<div class="w-full max-w-sm">
|
||||
<SignupForm />
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user