aboutsummaryrefslogtreecommitdiff
path: root/shardweb/lib/templates/chat/chat.html.eex
blob: 8a43acf1922b10f623662b5371b34b6f10782682 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!-- Page Heading -->
<div class="row">
  <div class="col-lg-12">
    <h1 class="page-header">
      <%= if @public do %>
        #<%= @chan %>
        <small>public chat room</small>
      <% else %>
        #<%= @nicks %>
        <small>private chat</small>
      <% end %>

    </h1>
    <ol class="breadcrumb">

      <%= if @public do %>
        <li>
          <i class="fa fa-comments"></i> Chat rooms
        </li>
        <li class="active">
          <i class="fa fa-comments"></i> #<%= @chan %>
        </li>
      <% else %>
        <li>
          <i class="fa fa-user"></i> Private chat
        </li>
        <li class="active">
          <i class="fa fa-comments"></i> <%= @nicks %>
        </li>
      <% end %>
    </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>