hmn/src/templates/src/reject.html

18 lines
414 B
HTML

{{ template "base.html" . }}
{{ define "content" }}
<div class="description ph2 ph0-ns">
<p>
<span class="big">Hi there, {{ if .User }}{{ .User.Name }}{{ else }}visitor{{ end }}!</span>
</p>
<p>
<span class="big">Your request was rejected for the following reason:</span><br />
<p class="b">{{ .RejectReason }}</p>
<p>
<a href="javascript:history.back();">Go back</a>
</p>
</p>
</div>
{{ end }}