17 lines
421 B
Plaintext
17 lines
421 B
Plaintext
package users
|
|
|
|
import (
|
|
bl "git.jamestombleson.com/jtom38/newsbot-portal/templ-bulma/layout"
|
|
"git.jamestombleson.com/jtom38/newsbot-portal/internal/models"
|
|
"git.jamestombleson.com/jtom38/newsbot-portal/internal/views/layout"
|
|
)
|
|
|
|
templ Logout() {
|
|
@layout.WithTemplate(models.HeaderMetaTags{
|
|
Title: "Logged Out",
|
|
Type: "Page",
|
|
}) {
|
|
@bl.Hero("You are out of here!", "Please login again when you are ready.")
|
|
}
|
|
}
|