62 lines
1.3 KiB
HTML
62 lines
1.3 KiB
HTML
{{ define "title" }}Login{{ end }} {{ define "header" }}🔒 Login{{ end }} {{
|
|
define "content" }}
|
|
<style>
|
|
.login-form {
|
|
display: inline-block;
|
|
text-align: left;
|
|
padding: 20px 25px;
|
|
background-color: #1a1a1a;
|
|
border: 1px solid #444;
|
|
color: #eee;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.login-form label {
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
color: #ccc;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.login-form input[type="password"],
|
|
.login-form input[type="submit"] {
|
|
width: 100%;
|
|
padding: 10px;
|
|
margin-bottom: 12px;
|
|
border: 1px solid #444;
|
|
background-color: #222;
|
|
color: #eee;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.login-form input[type="submit"] {
|
|
background-color: #0af;
|
|
color: #111;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.login-form input[type="submit"]:hover {
|
|
background-color: #08c;
|
|
}
|
|
|
|
.error {
|
|
color: #ff6b6b;
|
|
font-size: 0.9em;
|
|
margin-top: -8px;
|
|
}
|
|
</style>
|
|
|
|
<form method="POST" action="/login" class="login-form">
|
|
<label for="password">Password</label><br />
|
|
<input type="password" id="password" name="password" required /><br /><br />
|
|
<input type="submit" value="Login" />
|
|
{{ if .ErrorMessage }}
|
|
<p class="error">{{ .ErrorMessage }}</p>
|
|
{{ end }}
|
|
</form>
|
|
|
|
{{ end }} {{ template "layout" . }}
|