5727fd9b07
Only login and logout work by now. Methods in the old chat javascripts are almost all commented until they are refactored to use backbone.
78 lines
2.3 KiB
HTML
78 lines
2.3 KiB
HTML
<!-- TODO: Copying from the old layout, but can be improved -->
|
|
<div id="layout">
|
|
|
|
<div id="presentation">
|
|
<div id="slideAndControls">
|
|
<div id="slide">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="users">
|
|
<h3>Users</h3>
|
|
<div id="current_users"></div>
|
|
<input id="switch-presenter" type="button" value="Switch presenter">
|
|
</div>
|
|
|
|
<div id="chat">
|
|
<h3>Chat</h3>
|
|
<div id="chat_messages">
|
|
<span>
|
|
You are now connected to MeetingID
|
|
<strong><%= "TODO: Meeting ID" %></strong>
|
|
</span>
|
|
</div>
|
|
<div id="chat-entry">
|
|
<textarea id="chat_input_box" maxlength="140" placeholder="Enter a chat message."></textarea>
|
|
<button id="chat-send">Post</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="navbar">
|
|
<div class="navbar-btngroup">
|
|
<button id="prev-slide-btn" class="navbar-btn">
|
|
<i class="icon-arrow-left"></i> Previous
|
|
</button>
|
|
<button id="next-slide-btn" class="navbar-btn">
|
|
<i class="icon-arrow-right"></i> Next
|
|
</button>
|
|
<button id="tool-pan-btn" class="navbar-btn">
|
|
<i class="icon-move"></i> Pan/Zoom
|
|
</button>
|
|
<button id="tool-line-btn" class="navbar-btn">
|
|
<i class="icon-pencil"></i> Line
|
|
</button>
|
|
<button id="tool-rect-btn" class="navbar-btn">
|
|
Rectangle
|
|
</button>
|
|
<button id="tool-ellipse-btn" class="navbar-btn">
|
|
Ellipse
|
|
</button>
|
|
</div>
|
|
<div class="navbar-btngroup pull-right">
|
|
<button id="users-btn" class="navbar-btn">
|
|
<i class="icon-group"></i>Users
|
|
</button>
|
|
<button id="video-btn" class="navbar-btn">
|
|
<i class="icon-facetime-video"></i>Video
|
|
</button>
|
|
<button id="chat-btn" class="navbar-btn">
|
|
<i class="icon-signout"></i>
|
|
Chat
|
|
<div id="chat-notifications" class="notification">12</div>
|
|
</button>
|
|
<button id="logout-btn" class="navbar-btn">
|
|
<a href="/logout"> <!-- TODO: temporary! -->
|
|
<i class="icon-signout"></i> Logout
|
|
</a>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<canvas id="colourView" width="12" height="12"></canvas>
|
|
<input id="colourText" maxlength="7" type="text">
|
|
|
|
<a href="/logout">Logout</a>
|