aboutsummaryrefslogtreecommitdiff
path: root/server/app/views/chat.scala.html
diff options
context:
space:
mode:
Diffstat (limited to 'server/app/views/chat.scala.html')
-rw-r--r--server/app/views/chat.scala.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/server/app/views/chat.scala.html b/server/app/views/chat.scala.html
new file mode 100644
index 0000000..3a1fa30
--- /dev/null
+++ b/server/app/views/chat.scala.html
@@ -0,0 +1,11 @@
+@(uid: String)
+
+@main("Welcome to Chat") {
+ <main id="root">
+ Loading
+ </main>
+ <script src="@routes.Assets.versioned("client-fastopt.js")" type="text/javascript"></script>
+ <script type="text/javascript">
+ chat.Main().main("@uid")
+ </script>
+}