aboutsummaryrefslogblamecommitdiff
path: root/shardweb/lib/shard_web/templates/room/show.html.eex
blob: 75960b45c2a3b0867cb6692f06a31535589c81ad (plain) (tree)





















                                                          



                                                                                                                                  







                                                                                            

        
<!-- 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>