Files
TA-Deployment-Broker/internal/app/templates/login.html
T
David Schroeder 0ceb342d14 update
2026-07-25 15:25:24 -05:00

27 lines
904 B
HTML

{{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="login-logo"><img src="/static/ta-logo.svg" alt="Technology Architects"></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}}