frontend: order result screen

Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
This commit is contained in:
Ahmet Alp Balkan 2018-06-28 00:15:16 -07:00 committed by Simon Zeltser
parent 19aeb032b5
commit 91493bf0a3
4 changed files with 57 additions and 9 deletions

View file

@ -0,0 +1,17 @@
{{ define "error" }}
{{ template "header" }}
<main role="main">
<div class="py-5">
<div class="container bg-light py-3 px-lg-5 py-lg-5">
<h1>Uh, oh!</h1>
<p>Something has failed. Below are some details for debugging.</p>
<pre>
{{.errorMsg}}
</pre>
</div>
</div>
</main>
{{ template "footer" }}
{{ end }}