summaryrefslogtreecommitdiffstats
path: root/web/templates/verify.html
blob: 60a7990f0aaac472816018b331928540f5af8c5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{define "verify"}}
<html>
{{template "head" . }}
<body>
    <div class="container-fluid">
        <div class="row">
            <div id="verify"></div>
        </div>
    </div>
    <script>
        window.setup_verify_page('{{ .Props.IsVerified }}');
    </script>
</body>
</html>
{{end}}