summaryrefslogtreecommitdiffstats
path: root/web/templates/verify.html
blob: a61964bb30c3270c9475840b13ecbf97594ca9be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{define "verify"}}
<!DOCTYPE html>
<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}}