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

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
@layout.Footer() } } templ Main(title string, user types.User, ListSession []*session.SessionInfo) { @content(title, user, ListSession) }