58 lines
2.0 KiB
HTML
Executable File
58 lines
2.0 KiB
HTML
Executable File
<template name="joinAudioDialog">
|
|
<div id="joinAudioDialog" title="How do you want to join the audio?">
|
|
<hr class="joinAudioDialogHr"/>
|
|
<div style="float:left; border-right: 2px solid darkgrey; width: 50%; height: 100%">
|
|
<i class="icon ion-mic-a joinAudioDialogIcon"></i>
|
|
<br/>
|
|
<button id="microphone" class="joinAudioDialogButton">Microphone</button>
|
|
</div>
|
|
<div style="float:left; width: 50%">
|
|
<i class="icon ion-volume-high joinAudioDialogIcon"></i>
|
|
<br/>
|
|
<button id="listen_only" class="joinAudioDialogButton">Listen Only</button>
|
|
</div>
|
|
<br style="clear:both;"/><br/>
|
|
<hr style="margin: 10px; border: 1px solid darkgrey;" />
|
|
</div>
|
|
</template>
|
|
|
|
<template name="header">
|
|
<nav id="navbar" class="myNavbar gradientBar top-bar" role="navigation">
|
|
{{#if getInSession "display_usersList"}}
|
|
{{> makeButton btn_class="toggleUserlist navbarButton" i_class="ion-navicon-round" rel="tooltip" data_placement="bottom" title="Close Userlist"}}
|
|
{{else}}
|
|
{{> makeButton btn_class="toggleUserlist navbarButton" i_class="ion-navicon-round" rel="tooltip" data_placement="bottom" title="Open Userlist"}}
|
|
{{/if}}
|
|
<span class="navbarTitle">
|
|
{{getWhiteboardTitle}}
|
|
</span>
|
|
</nav>
|
|
</template>
|
|
|
|
<template name="main">
|
|
<div id="dialog" title="Confirm Logout">
|
|
<p>Are you sure you want to log out?</p>
|
|
</div>
|
|
{{> joinAudioDialog}}
|
|
<div id="notification">
|
|
<div id="browser-icon-container"></div>
|
|
<p id="notification-text"></p>
|
|
</div>
|
|
<div id="container">
|
|
{{> usersList id="users" name="usersList"}}
|
|
<div id="main">
|
|
{{> header}}
|
|
<div id="panels">
|
|
{{> whiteboard id="whiteboard" name="whiteboard"}}
|
|
{{> chatbar id="chat" title="Chat" name="chatbar"}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<template name="recordingStatus">
|
|
</template>
|
|
|
|
<template name='slidingMenu'>
|
|
</template>
|