hmn/src/templates/src/reject.html

16 lines
407 B
HTML

{{ template "base-2024.html" . }}
{{ define "content" }}
<div class="post-content description ph3 ph0-ns center mt3 mw6">
<h1>Hi there, {{ if .User }}{{ .User.Name }}{{ else }}visitor{{ end }}!</h1>
<p>
<span>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 }}