Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/routes/docs/tutorials/astro-ssr-auth/step-5/+page.markdoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Add authentication to a Astro project using Appwrite.
step: 5
---

We can now implement our sign up page. Create a `signin.astro` file in the `src/pages` directory:
We can now implement our sign up page. Create a `signup.astro` file in the `src/pages` directory:

```js
---
Expand Down Expand Up @@ -64,4 +64,4 @@ if (Astro.request.method === "POST") {
}
---
<!--- ... rest of existing form --->
```
```