cacert-boardvoting/templates/denied.html

17 lines
582 B
HTML
Raw Permalink Normal View History

2017-04-30 00:37:29 +00:00
{{ template "header" . }}
<div class="column">
<div class="ui negative message">
<div class="header">You are not authorized to act here!</div>
<p>If you think this is in error, please contact the administrator.</p>
<p>If you don't know who that is, it is definitely not an error ;)</p>
{{ if .Emails }}
<p>The following addresses were present in your certificate:<p>
<ul>
{{ range .Emails }}
<li>{{ . }}</li>
{{ end }}
</ul>
{{ end }}
2017-04-30 00:37:29 +00:00
</div>
</div>
{{ template "footer" . }}