add user auth to examples page

This commit is contained in:
maddalax 2024-10-20 08:09:40 -05:00
parent b8d23131b7
commit c32fa1bccd
2 changed files with 7 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

View file

@ -14,6 +14,13 @@ type Example struct {
} }
var examples = []Example{ var examples = []Example{
{
Title: "User Authentication Example",
Github: "https://github.com/maddalax/htmgo/tree/master/examples/simple-auth",
Description: "An example showing basic user registration and login with htmgo",
Demo: "https://auth-example.htmgo.dev",
Image: "public/auth-example.jpg",
},
{ {
Title: "Hacker News Clone", Title: "Hacker News Clone",
Github: "https://github.com/maddalax/htmgo/tree/master/examples/hackernews", Github: "https://github.com/maddalax/htmgo/tree/master/examples/hackernews",