chldapasswd/static/header.html
2026-03-08 12:26:26 +07:00

16 lines
712 B
HTML

{{define "header"}}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{if .brand_name}}{{.brand_name}} - {{end}}Password management</title>
<link rel="stylesheet" href="style.css">
<script src="altcha.min.js" type="module" async defer></script>
</head>
<body>
<div class="brand">
{{if .brand_logo}}<img src="{{.brand_logo}}" alt="" class="brand-logo">{{else}}<span class="brand-name">{{if .brand_name}}{{.brand_name}}{{else}}Password management{{end}}</span>{{end}}
</div>
<div class="card{{if .card_wide}} card-wide{{end}}">
{{end}}