summaryrefslogtreecommitdiffstats
path: root/web/templates/signup_team.html
blob: b8659058913f9dbc1162ab45b73f0eaf4e5186c7 (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
{{define "signup_team"}}
<!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">
                        <img class="signup-team-logo" src="/static/images/logo.png" />
                        <h2>All team communication in one place, searchable and accessible anywhere</h2>
                        <h4 class="text--light">{{ .SiteName }} is free for an unlimited time, for unlimited users </h4 class="text--light">
                        <div id="signup-team"></div>
                    </div>
                </div>
                <div class="footer-push"></div>
            </div>
            <div class="row footer">
                {{template "footer" . }}
            </div>
        </div>
    </div>
    <script>
window.setup_signup_team_page();
    </script>
</body>
</html>
{{end}}