aboutsummaryrefslogtreecommitdiff
path: root/shardweb/lib/shard_web/templates/room/show.html.eex
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2018-10-12 14:40:21 +0200
committerAlex Auvolat <alex@adnab.me>2018-10-12 14:40:21 +0200
commit1e91dc596fd2f7fdd96b7fd2fc50724f93e46529 (patch)
tree067d56e6fb9e215cc76dea5c9c82e61ef369d90e /shardweb/lib/shard_web/templates/room/show.html.eex
parentd15d5fbfc5133a9d0f0d99dbbfc023849f61cc37 (diff)
downloadshard-1e91dc596fd2f7fdd96b7fd2fc50724f93e46529.tar.gz
shard-1e91dc596fd2f7fdd96b7fd2fc50724f93e46529.zip
Move and reorganize some stuff
Diffstat (limited to 'shardweb/lib/shard_web/templates/room/show.html.eex')
-rw-r--r--shardweb/lib/shard_web/templates/room/show.html.eex36
1 files changed, 0 insertions, 36 deletions
diff --git a/shardweb/lib/shard_web/templates/room/show.html.eex b/shardweb/lib/shard_web/templates/room/show.html.eex
deleted file mode 100644
index 75960b4..0000000
--- a/shardweb/lib/shard_web/templates/room/show.html.eex
+++ /dev/null
@@ -1,36 +0,0 @@
-<!-- Page Heading -->
-<div class="row">
- <div class="col-lg-12">
- <h1 class="page-header">
- #<%= @room %>
-
- </h1>
- <ol class="breadcrumb">
- <li>
- <i class="fa fa-comments"></i> Chat rooms
- </li>
- <li class="active">
- <i class="fa fa-comments"></i> #<%= @room %>
- </li>
- </ol>
- </div>
-</div>
-<!-- /.row -->
-
-<%= render ShardWeb.LayoutView, "flashes.html", assigns %>
-
-
-
-<!-- The list of messages will appear here: -->
-<ul id='msg-list' class='row' style='list-style: none; min-height:400px; padding: 10px; max-height: 400px; overflow: scroll'></ul>
-
-<div class="form-horizontal">
- <div class="form-group">
- <div class="col-sm-2 control-label">
- <strong>&lt;<%= @nick %>&gt;</strong>
- </div>
- <div class="col-sm-10">
- <input type="text" id="msg" class="form-control" placeholder="Your Message" autofocus>
- </div>
- </div>
-</div>