21 lines
655 B
Plaintext
21 lines
655 B
Plaintext
package users
|
|
|
|
import (
|
|
"git.jamestombleson.com/jtom38/newsbot-portal/components/bulma"
|
|
bh "git.jamestombleson.com/jtom38/newsbot-portal/components/bulma/html"
|
|
bl "git.jamestombleson.com/jtom38/newsbot-portal/components/bulma/layout"
|
|
"git.jamestombleson.com/jtom38/newsbot-portal/internal/views/layout"
|
|
)
|
|
|
|
templ Profile() {
|
|
@layout.WithTemplate() {
|
|
@bl.Hero("Profile", "Here you can update your profile 😀")
|
|
|
|
@bulma.H2("Sessions", false)
|
|
@bulma.Button() {
|
|
@bh.ALink("/users/forcelogout", "Terminate all active sessions")
|
|
}
|
|
@bulma.Subitle("This will force you to login again as the application will give you a new session value.")
|
|
}
|
|
}
|