phoenix/templates/auth.html.tmpl

29 lines
801 B
Cheetah
Raw Normal View History

2023-04-06 10:36:11 +05:00
<!DOCTYPE html>
<html lang="en">
<head>
2023-11-02 21:20:10 +05:00
{{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>
<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>