docs: ssr types

This commit is contained in:
loks0n
2024-02-26 14:15:15 +00:00
committed by Torsten Dittmann
parent f7329e8893
commit 5e8bc2b952
5 changed files with 6 additions and 6 deletions

View File

@@ -8,7 +8,7 @@ step: 5
We can now implement our sign in page. Create a `+page.svelte` file in the `src/routes/signin` directory:
```svelte
<!-- src/routes/sigin/+page.svelte -->
<!-- src/routes/signin/+page.svelte -->
<form method="post">
<input id="email" placeholder="Email" type="email" />
<input id="password" placeholder="Password" type="password" />

View File

@@ -10,7 +10,7 @@ To support the OAuth2 flow, we first redirect the user to the OAuth2 provider, a
To redirect, add a button to our sign in page that redirects the user to the OAuth2 provider.
```svelte
<!-- src/routes/sigin/+page.svelte -->
<!-- src/routes/signin/+page.svelte -->
<!-- ... existing sign in form -->