aboutsummaryrefslogblamecommitdiff
path: root/shardweb/lib/templates/chat/chat.html.eex
blob: 45609d8c8d760b2e81e022cfb70d1a722d8f9bc6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11



                            






                                       


                           





                                                   
                                                   


                
                                                     

                           
                                                  

               







                                                          



                                                                                                                                  







                                                                                            

        
<!-- 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-users"></i> #<%= @chan %>
        </li>
      <% else %>
        <li>
          <i class="fa fa-comments"></i> Private chat
        </li>
        <li class="active">
          <i class="fa fa-user"></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>