20 lines
597 B
Plaintext
20 lines
597 B
Plaintext
package users
|
|
|
|
import (
|
|
"git.jamestombleson.com/jtom38/newsbot-portal/components/bulma"
|
|
templhtml "git.jamestombleson.com/jtom38/newsbot-portal/components/templ-html"
|
|
"git.jamestombleson.com/jtom38/newsbot-portal/internal/views/layout"
|
|
)
|
|
|
|
templ Profile() {
|
|
@layout.WithTemplate() {
|
|
@bulma.Hero("Profile", "Here you can update your profile 😀")
|
|
|
|
@bulma.H2("Sessions", false)
|
|
@bulma.Button() {
|
|
@templhtml.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.")
|
|
}
|
|
}
|