summaryrefslogtreecommitdiffstats
path: root/web/templates/signup_team_confirm.html
blob: 3a6134af3bd66915d26971b78f81d185ea73f938 (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
{{define "signup_team_confirm"}}
<!DOCTYPE html>
<html>
{{template "head" . }}
<body class="white">
    <div class="container-fluid">
        <div class="inner__wrap">
            <div class="row content">
                <div class="col-sm-12">
                    <div class="signup-team__container">
                        <h3>Sign up Complete</h3>
                        <p>Please check your email: {{ .Props.Email }}<br>
                        You email contains a link to set up your team</p>
                    </div>
                </div>
            </div>
            <div class="row footer">
                {{template "footer" . }}
            </div>
        </div>
    </div>
</body>
</html>
{{end}}