Added account page with subpage select

This commit is contained in:
2025-02-14 23:15:51 +11:00
parent ea4dd2a407
commit d53114cc20
6 changed files with 117 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
package account
templ AccountContent(subpage string) {
<form hx-post="/account-select-page">
<div class="flex max-w-200 min-h-100 mx-auto bg-mantle mt-10 rounded-xl">
@SelectMenu(subpage)
<div class="mt-5">
<div class="pl-10 text-2xl text-subtext1 underline">
{ subpage }
</div>
// page content
</div>
</div>
</form>
}