28 lines
970 B
HTML
28 lines
970 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="icon" type="image/svg+xml" href="/static/ta-mark.svg">
|
|
<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 to Login</a>
|
|
<p class="fine-print">Authorized TAI technicians only. Activity is audited.</p>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html>
|
|
{{end}}
|