summaryrefslogtreecommitdiffstats
path: root/web/templates/verify.html
blob: bab329c7ddb256b2604bd713f88ff5b14e248035 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{{define "verify"}}
<!DOCTYPE html>
<html>
    {{template "head" . }}
    <body class="white">
        <div class="container-fluid">
            <div class="inner__wrap">
                <div class="row content">
                    <div class="signup-header">
                        <a href="/{{.Props.TeamName}}">{{.Props.TeamDisplayName}}</a>
                    </div>
                    <div class="col-sm-12">
                        <div class="signup-team__container">
                            <img class="signup-team-logo" src="/static/images/logo.png" />
                            <div id="verify"></div>
                        </div>
                    </div>
                    <div class="footer-push"></div>
                </div>
                <div class="row footer">
                    {{template "footer" . }}
                </div>
            </div>
        </div>
        <script>
            window.setupVerifyPage({{ .Props }});
        </script>
    </body>
</html>
{{end}}