-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathafter-sign.html
41 lines (36 loc) · 1.48 KB
/
after-sign.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="static/styles.css" />
<!--<meta http-equiv="refresh" content="2;URL=/certificate?certName={{.CertName}}&fetchKey={{.FetchKey}}">-->
</head>
<body>
<div class="wrapper">
<img src="static/images/logo.svg" alt="Logo" width="220" height="191" />
<h1>Signing the Guestbook</h1>
<div class="divider"></div>
{{if .Error}}
<div class="error">{{.Error}}</div>
{{else}}
<div>
<p>You signed the guestbook! Thanks for taking part in the cert-manager booth demo!</p>
<p>Note that you get a bonus star in the guestbook if you sign manually using your cert.</p>
<p>You can download your certificate and private key using the QR code on your printed cert.</p>
</div>
{{end}}
<div class="divider"></div>
<form method="GET" action="/certificate" class="form">
<input name="certName" type="text" value="{{.CertName}}" hidden required />
<input name="fetchKey" type="text" value="{{.FetchKey}}" hidden required />
<input type="submit" value="Back to your certificate" class="constrain" />
</form>
</div>
</body>
</html>