Added auth

This commit is contained in:
Pijus Kamandulis
2025-07-04 21:05:28 +03:00
parent b3c89a01d0
commit ef247fc843
13 changed files with 297 additions and 80 deletions

61
templates/login.html Normal file
View File

@@ -0,0 +1,61 @@
{{ 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" . }}