comics/templates/login.html

34 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="icon" type="/image/png" href="/static/img/favicon.png"/>
<link rel="stylesheet" href="/static/css/form.css">
<link rel="stylesheet" href="/static/css/base.css">
<link rel="stylesheet" href="/static/css/login.css">
<link rel="stylesheet" href="/static/css/top.css">
<title>{{ .Title }}</title>
</head>
<body>
<div class="top">
<div class="title">
<h1>{{ .Title }}</h1>
</div>
</div>
<div class="login">
<div class="manager-form">
<form action="login" method="post">
<label for="username">&ltUsername&gt</label>
<input type="username" class="input" name="username">
<label for="password">&ltPassword&gt</label>
<input class="input" type="password" name="password">
<input type="submit" style="display:none;" id="login">
<label type="submit" class="login fake-button" for="login">&ltLogin&gt</label>
</form>
</div>
{{ if .Message }}
<p class="message">{{ .Message }}</p>
{{ end }}
</div>
</body>
</html>