summaryrefslogtreecommitdiffstats
path: root/web/templates/welcome.html
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-06-14 23:53:32 -0800
committer=Corey Hulen <corey@hulen.com>2015-06-14 23:53:32 -0800
commitcf7a05f80f68b5b1c8bcc0089679dd497cec2506 (patch)
tree70007378570a6962d7c175ca96af732b71aeb6da /web/templates/welcome.html
downloadchat-cf7a05f80f68b5b1c8bcc0089679dd497cec2506.tar.gz
chat-cf7a05f80f68b5b1c8bcc0089679dd497cec2506.tar.bz2
chat-cf7a05f80f68b5b1c8bcc0089679dd497cec2506.zip
first commit
Diffstat (limited to 'web/templates/welcome.html')
-rw-r--r--web/templates/welcome.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/web/templates/welcome.html b/web/templates/welcome.html
new file mode 100644
index 000000000..27bf4bcaf
--- /dev/null
+++ b/web/templates/welcome.html
@@ -0,0 +1,36 @@
+{{define "welcome"}}
+<html>
+{{template "head" . }}
+<body>
+ <div class="container-fluid">
+ <div class="inner__wrap">
+ <div class="row header">
+ <div id="navbar"></div>
+ </div>
+ <div class="row main">
+ <div class="app__content">
+ <div class="welcome-info">
+ <h1>Welcome to {{ .SiteName }}!</h1>
+ <p>
+ You do not appear to be part of any teams. Please contact your
+ administrator to have him send you an invitation to a private team.
+ Or you can start a new private team.
+ </p>
+ <div class="alert alert-warning">
+ If you where invited to a team that you do not see you must
+ confirm your email address first before gaining access to the
+ team.
+ </div>
+ <div id="new_channel">
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ <script>
+ window.setup_welcome_page();
+ </script>
+</body>
+</html>
+{{end}}