package userView import "github.com/fossyy/filekeeper/view/layout" templ content(email string, username string, title string) { @layout.Base(title){

User Profile

This is some information about the user.

Full name
{ username }
Email address
{ email }
Password
ntah lah
} } templ Main(title string, email string, username string) { @content(email, username, title) }