24 lines
595 B
Cheetah
24 lines
595 B
Cheetah
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||
|
<title>Landing Page</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>Login</h1>
|
||
|
{{- range .Errors }}
|
||
|
<p class="is-error">{{ . }}</p>
|
||
|
{{- end }}
|
||
|
<form action="/login" method="post">
|
||
|
<input type="email" name="login" required>
|
||
|
<input type="password" name="password" required>
|
||
|
{{ .csrfField }}
|
||
|
<input type="submit" value="Log In">
|
||
|
</form>
|
||
|
</body>
|
||
|
|
||
|
</html>
|