polycule-connect/polyculeconnect/templates/error.html

13 lines
333 B
HTML
Raw Permalink Normal View History

2023-10-14 16:06:02 +00:00
{{ template "header.html" . }}
<script src="/static/scripts/error.js" defer></script>
2023-11-04 08:31:29 +00:00
<div class="container">
<div class="container-content">
<button id="error-back" class="button button-cancel">Back</button>
2023-11-04 08:31:29 +00:00
<h2>{{ .ErrType }}</h2>
<p>{{ .ErrMsg }}</p>
</div>
2023-10-14 16:06:02 +00:00
</div>
{{ template "footer.html" . }}