rpg/templates.templ
2024-09-03 22:34:04 +03:00

39 lines
No EOL
802 B
Text

package main
templ tLoginForm(err string) {
<form action="/login" method="POST">
<h2>Login</h2>
Username: <input name="username"><br>
Password: <input name="password" type="password"><br>
if err != "" {
<div style="color:red">{err}</div>
}
<input type="submit">
</form>
}
templ tHello(session *UserSession) {
<div>Hello {session.Username}</div>
}
templ tError(err string) {
<div style="color:red;">err</div>
}
templ tPage(contents templ.Component) {
<html>
<head>
<title>The Game</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>THE GAME</h1>
@contents
</body>
</html>
}