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

Profile

JL

Session Management

for _, ses := range ListSession { }
IP Address Browser Device Last Activity Actions
{ses.IP} {ses.Browser + ses.Version} {ses.OS + ses.OSVersion} {ses.AccessAt}

Reset Password

Click to log out or terminate the current session.

Storage Usage

Used 42.0GB
Available 6.9GB
Upload Download

Upgrade Storage

Pro Plan

50GB of storage for $9.99/month

Upgrade

Enterprise Plan

1TB of storage for $49.99/month

Upgrade
} } templ Main(title string, email string, username string, ListSession []*session.SessionInfo) { @content(email, username, title, ListSession) }