phoenix/templates/auth.html.tmpl
2023-04-06 10:36:11 +05:00

29 lines
795 B
Cheetah

<!DOCTYPE html>
<html lang="en">
<head>
{{template "head"}}
<link rel="stylesheet" href="assets/auth.css" />
</head>
<body>
<div class="page">
<form action="{{.formAction}}" method="POST">
<h1>{{.title}}</h1>
<p>{{.description}}</p>
<input
placeholder="Username"
name="username"
type="text"
required
/>
<input
placeholder="Password"
name="password"
type="password"
required
/>
<button type="submit">{{.button}}</button>
</form>
</div>
</body>
</html>