11 lines
259 B
Plaintext
11 lines
259 B
Plaintext
package admin
|
|
|
|
import "git.markbailey.dev/cervers/ptpp/view/layout"
|
|
|
|
templ Index(name string) {
|
|
@layout.Layout() {
|
|
<h1>Welcome, { name }</h1>
|
|
<div>You are an admin in a protected area of the site. Please do not share your password with anyone</div>
|
|
}
|
|
}
|