phoenix/templates/auth.html.tmpl

29 lines
809 B
Cheetah
Raw Permalink Normal View History

2023-04-06 10:36:11 +05:00
<!DOCTYPE html>
<html lang="en">
<head>
{{ template "head" . }}
2023-04-09 11:33:34 +05:00
<link rel="stylesheet" href="assets/css/auth.css" />
2023-04-06 10:36:11 +05:00
</head>
<body>
<div class="page">
<form action="{{ .formAction }}" method="POST">
<h1>{{ .title }}</h1>
<p>{{ .description }}</p>
2023-04-06 10:36:11 +05:00
<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>