initial upload

This commit is contained in:
David Schroeder
2026-07-25 13:11:37 -05:00
commit 943ddb064f
25 changed files with 2586 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{{define "login.html"}}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{.Title}}</title>
<link rel="stylesheet" href="/static/app.css">
</head>
<body class="login-page">
<main class="login-shell">
<section class="login-card">
<div class="brand-mark">TAPM</div>
<p class="eyebrow">Technician authorization</p>
<h1>Deployment Access</h1>
<p class="lede">
Create time-limited access for protected packages without placing
permanent credentials on customer infrastructure.
</p>
<a class="button primary wide" href="{{.GiteaLoginURL}}">Continue with Gitea</a>
<p class="fine-print">Authorized TAI technicians only. Activity is audited.</p>
</section>
</main>
</body>
</html>
{{end}}