16 lines
532 B
Plaintext
16 lines
532 B
Plaintext
|
package users
|
||
|
|
||
|
import "git.jamestombleson.com/jtom38/newsbot-portal/internal/views/layout"
|
||
|
import "git.jamestombleson.com/jtom38/newsbot-portal/internal/views/bulma"
|
||
|
|
||
|
templ Profile() {
|
||
|
@layout.WithTemplate() {
|
||
|
@bulma.Hero("Profile", "Here you can update your profile 😀")
|
||
|
|
||
|
<button type="button" class="button">
|
||
|
<a href="/users/forcelogout">Logout Everywhere</a>
|
||
|
Logout Everywhere</button>
|
||
|
<p class="subtitle">This will force all active sessions to stop working and require a new login.</p>
|
||
|
}
|
||
|
}
|