blob: 5f28cc578e7a02128a3a1cdaea3f39cc78122334 (
plain) (
blame)
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
|
<ul class="nav nav-tabs">
<%= for shard <- shard_list() do %>
<%= case shard do %>
<%= {_, %SApp.Chat.Manifest{channel: name}, _} -> %>
<li class="<%= if name == @room do "active" else "" end %>">
<a href="<%= room_path(@conn, :show, name) %>">#<%= name %></a>
</li>
<% end %>
<% end %>
<li>
<a href="#" onclick="if(new_room=prompt('Enter name of room to join, without preceding # sign:'))window.location.href='/room/'+new_room;">Join room</a>
</li>
</ul>
<!-- 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="row">
<div class="col-xs-3">
<input type="text" value="<%= @name %>" id="name" class="form-control" placeholder="Your Name">
</div>
<div class="col-xs-9">
<input type="text" id="msg" class="form-control" placeholder="Your Message" autofocus>
</div>
</div>
|