2014-08-21 16:42:54 +00:00
< html itemscope itemtype = "http://schema.org/Product" prefix = "og: http://ogp.me/ns#" xmlns = "http://www.w3.org/1999/html" >
2015-06-18 14:16:11 +00:00
<!--
Copyright @ 2015 Atlassian Pty Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
* -->
2013-12-16 11:22:23 +00:00
< head >
2014-09-30 13:05:28 +00:00
<!-- #include virtual="title.html" -->
2014-04-22 11:01:04 +00:00
< link rel = "icon" type = "image/png" href = "/images/favicon.ico" / >
2014-04-03 11:07:32 +00:00
< meta property = "og:title" content = "Jitsi Meet" / >
< meta property = "og:image" content = "/images/jitsilogo.png" / >
< meta property = "og:description" content = "Join a WebRTC video conference powered by the Jitsi Videobridge" / >
< meta description = "Join a WebRTC video conference powered by the Jitsi Videobridge" / >
< meta itemprop = "name" content = "Jitsi Meet" / >
< meta itemprop = "description" content = "Join a WebRTC video conference powered by the Jitsi Videobridge" / >
< meta itemprop = "image" content = "/images/jitsilogo.png" / >
2014-08-29 09:15:11 +00:00
< script src = "libs/jquery-2.1.1.min.js" > < / script >
2015-05-29 14:09:44 +00:00
< script src = "config.js?v=9" > < / script > <!-- adapt to your needs, i.e. set hosts and bosh path -->
2014-09-10 14:09:46 +00:00
< script src = "libs/strophe/strophe.min.js?v=1" > < / script >
2014-09-25 10:17:34 +00:00
< script src = "libs/strophe/strophe.disco.min.js?v=1" > < / script >
< script src = "libs/strophe/strophe.caps.jsonly.min.js?v=1" > < / script >
2014-08-01 02:02:30 +00:00
< script src = "libs/jquery-ui.js" > < / script >
2014-06-18 11:42:31 +00:00
< script src = "libs/tooltip.js?v=1" > < / script > <!-- bootstrap tooltip lib -->
< script src = "libs/popover.js?v=1" > < / script > <!-- bootstrap tooltip lib -->
2014-10-30 16:07:11 +00:00
< script src = "libs/toastr.js?v=1" > < / script > <!-- notifications lib -->
2014-12-17 12:45:04 +00:00
< script src = "interface_config.js?v=5" > < / script >
2015-06-17 08:11:30 +00:00
< script src = "libs/app.bundle.js?v=86" > < / script >
2014-05-01 08:31:58 +00:00
< script src = "analytics.js?v=1" > < / script > <!-- google analytics plugin -->
2015-04-12 12:26:58 +00:00
< link rel = "stylesheet" href = "css/font.css?v=7" / >
2014-10-30 16:07:11 +00:00
< link rel = "stylesheet" href = "css/toastr.css?v=1" >
2014-10-31 11:47:12 +00:00
< link rel = "stylesheet" type = "text/css" media = "screen" href = "css/main.css?v=30" / >
2015-03-27 09:36:39 +00:00
< link rel = "stylesheet" type = "text/css" media = "screen" href = "css/videolayout_default.css?v=17" id = "videolayout_default" / >
2014-10-31 11:47:12 +00:00
< link href = "//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel = "stylesheet" >
2014-02-11 14:05:17 +00:00
< link rel = "stylesheet" href = "css/jquery-impromptu.css?v=4" >
2014-02-05 13:01:22 +00:00
< link rel = "stylesheet" href = "css/modaldialog.css?v=3" >
2015-03-12 16:51:31 +00:00
< link rel = "stylesheet" href = "css/notice.css?v=1" >
2014-09-30 14:57:35 +00:00
< link rel = "stylesheet" href = "css/popup_menu.css?v=4" >
2015-02-18 15:50:47 +00:00
< link rel = "stylesheet" href = "css/login_menu.css?v=1" >
2014-09-18 13:26:12 +00:00
< link rel = "stylesheet" href = "css/popover.css?v=2" >
2014-10-30 16:07:11 +00:00
< link rel = "stylesheet" href = "css/jitsi_popover.css?v=2" >
2014-10-31 11:47:12 +00:00
< link rel = "stylesheet" href = "css/contact_list.css?v=4" >
2014-10-02 09:30:46 +00:00
< link rel = "stylesheet" href = "css/chat.css?v=5" >
2014-09-25 10:48:37 +00:00
< link rel = "stylesheet" href = "css/welcome_page.css?v=2" >
2015-06-01 07:11:12 +00:00
< link rel = "stylesheet" href = "css/settingsmenu.css?v=2" >
2014-03-17 13:00:47 +00:00
<!--
Link used for inline installation of chrome desktop streaming extension,
2014-04-01 11:19:11 +00:00
is updated automatically from the code with the value defined in config.js -->
2014-03-17 13:00:47 +00:00
< link rel = "chrome-webstore-item" href = "https://chrome.google.com/webstore/detail/diibjkoicjeejcmhdnailmkgecihlobk" >
2015-03-10 12:47:47 +00:00
< script src = "libs/jquery-impromptu.js?v=2" > < / script >
2014-02-05 13:01:22 +00:00
< script src = "libs/jquery.autosize.js" > < / script >
2015-03-30 14:00:23 +00:00
<!-- #include virtual="plugin.head.html" -->
2013-12-16 11:22:23 +00:00
< / head >
< body >
2014-08-21 16:42:54 +00:00
< div id = "welcome_page" >
< div id = "welcome_page_header" >
2014-09-25 10:48:37 +00:00
< a target = "_new" >
< div class = "watermark leftwatermark" > < / div >
2014-08-21 16:42:54 +00:00
< / a >
2014-09-25 10:48:37 +00:00
< a target = "_new" >
< div class = "watermark rightwatermark" > < / div >
< / a >
2015-02-06 15:46:50 +00:00
< a class = "poweredby" href = "http://jitsi.org" target = "_new" > < span data-i18n = "poweredby" > < / span > jitsi.org< / a >
2014-09-02 08:33:00 +00:00
2014-08-26 10:54:43 +00:00
< div id = "enter_room_container" >
< div id = "enter_room_form" >
< div id = "domain_name" > < / div >
< div id = "enter_room" >
2015-02-06 15:46:50 +00:00
< input id = "enter_room_field" type = "text" autofocus data-i18n = "[placeholder]welcomepage.roomname" placeholder = "Enter room name" / >
2014-08-27 10:59:28 +00:00
< div class = "icon-reload" id = "reload_roomname" > < / div >
2015-02-06 15:46:50 +00:00
< input id = "enter_room_button" type = "button" data-i18n = "[value]welcomepage.go" value = "GO" / >
2014-08-27 10:59:28 +00:00
2014-08-26 10:54:43 +00:00
< / div >
< / div >
2014-08-21 16:42:54 +00:00
< / div >
< div id = "brand_header" > < / div >
2014-08-27 10:28:08 +00:00
< input type = 'checkbox' name = 'checkbox' id = "disable_welcome" / >
2015-02-06 15:46:50 +00:00
< label for = "disable_welcome" class = "disable_welcome_position" data-i18n = "welcomepage.disable" > < / label >
2015-03-30 14:00:23 +00:00
< div id = "header_text" >
<!-- #include virtual="plugin.header.text.html" -->
< / div >
2014-08-21 16:42:54 +00:00
< / div >
< div id = "welcome_page_main" >
< div id = "features" >
< div class = "feature_row" >
< div class = "feature_holder" >
2015-02-06 15:46:50 +00:00
< div class = "feature_icon" data-i18n = "welcomepage.feature1.title" > < / div >
< div class = "feature_description" data-i18n = "welcomepage.feature1.content" data-i18n-options = '{ "postProcess": "resolveAppName" }' >
2014-08-21 16:42:54 +00:00
< / div >
< / div >
< div class = "feature_holder" >
2015-02-06 15:46:50 +00:00
< div class = "feature_icon" data-i18n = "welcomepage.feature2.title" > < / div >
< div class = "feature_description" data-i18n = "welcomepage.feature2.content" >
2014-08-21 16:42:54 +00:00
< / div >
< / div >
< div class = "feature_holder" >
2015-02-06 15:46:50 +00:00
< div class = "feature_icon" data-i18n = "welcomepage.feature3.title" > < / div >
< div class = "feature_description" data-i18n = "welcomepage.feature3.content" data-i18n-options = '{ "postProcess": "resolveAppName" }' >
2014-08-21 16:42:54 +00:00
< / div >
< / div >
< div class = "feature_holder" >
2015-02-06 15:46:50 +00:00
< div class = "feature_icon" data-i18n = "welcomepage.feature4.title" > < / div >
< div class = "feature_description" data-i18n = "welcomepage.feature4.content" >
2014-08-21 16:42:54 +00:00
< / div >
< / div >
< / div >
< div class = "feature_row" >
< div class = "feature_holder" >
2015-02-06 15:46:50 +00:00
< div class = "feature_icon" data-i18n = "welcomepage.feature5.title" > < / div >
< div class = "feature_description" data-i18n = "welcomepage.feature5.content" data-i18n-options = '{ "postProcess": "resolveAppName" }' >
< / div >
2014-08-21 16:42:54 +00:00
< / div >
< div class = "feature_holder" >
2015-02-06 15:46:50 +00:00
< div class = "feature_icon" data-i18n = "welcomepage.feature6.title" > < / div >
< div class = "feature_description" data-i18n = "welcomepage.feature6.content" data-i18n-options = '{ "postProcess": "resolveAppName" }' >
< / div >
2014-08-21 16:42:54 +00:00
< / div >
< div class = "feature_holder" >
2015-02-06 15:46:50 +00:00
< div class = "feature_icon" data-i18n = "welcomepage.feature7.title" > < / div >
< div class = "feature_description" data-i18n = "welcomepage.feature7.content" data-i18n-options = '{ "postProcess": "resolveAppName" }' > < / div >
2014-08-21 16:42:54 +00:00
< / div >
< div class = "feature_holder" >
2015-02-06 15:46:50 +00:00
< div class = "feature_icon" data-i18n = "welcomepage.feature8.title" > < / div >
< div class = "feature_description" data-i18n = "welcomepage.feature8.content" > < / div >
2014-08-21 16:42:54 +00:00
< / div >
< / div >
< / div >
< / div >
2015-03-30 14:00:23 +00:00
<!-- #include virtual="plugin.welcomepage.footer.html" -->
2014-08-21 16:42:54 +00:00
< / div >
< div id = "videoconference_page" >
< div style = "position: relative;" id = "header_container" >
< div id = "header" >
2015-03-12 16:51:31 +00:00
< div id = "notice" class = "notice" style = "display: none" >
< span id = "noticeText" class = "noticeText" > < / span >
< / div >
2014-08-21 16:42:54 +00:00
< span id = "toolbar" >
2015-02-18 15:50:47 +00:00
< span id = "authentication" class = "authentication" style = "display: none" >
< a class = "button" id = "toolbar_button_authentication" >
< i id = "authButton" class = "icon-avatar" > < / i >
< / a >
< ul class = "loginmenu" >
< span class = "loginmenuPadding" > < / span >
< li id = "toolbar_auth_identity" class = "identity" > < / li >
< li id = "toolbar_button_login" >
< a class = "authButton" data-i18n = "toolbar.login" > < / a >
< / li >
< li id = "toolbar_button_logout" >
< a class = "authButton" data-i18n = "toolbar.logout" > < / a >
< / li >
< / ul >
< div class = "header_button_separator" > < / div >
< / span >
2015-02-06 15:46:50 +00:00
< a class = "button" id = "toolbar_button_mute" data-container = "body" data-toggle = "popover" data-placement = "bottom" shortcut = "mutePopover" data-i18n = "[content]toolbar.mute" content = "Mute / Unmute" >
2014-08-21 16:42:54 +00:00
< i id = "mute" class = "icon-microphone" > < / i >
< / a >
2014-07-01 14:02:34 +00:00
< div class = "header_button_separator" > < / div >
2015-02-06 15:46:50 +00:00
< a class = "button" id = "toolbar_button_camera" data-container = "body" data-toggle = "popover" data-placement = "bottom" shortcut = "toggleVideoPopover" data-i18n = "[content]toolbar.videomute" content = "Start / stop camera" >
2014-08-21 16:42:54 +00:00
< i id = "video" class = "icon-camera" > < / i >
2014-08-19 11:43:30 +00:00
< / a >
2014-08-21 16:42:54 +00:00
< span id = "recording" style = "display: none" >
< div class = "header_button_separator" > < / div >
2015-02-06 15:46:50 +00:00
< a class = "button" id = "toolbar_button_record" data-container = "body" data-toggle = "popover" data-placement = "bottom" data-i18n = "[content]toolbar.record" content = "Record" >
2014-08-21 16:42:54 +00:00
< i id = "recordButton" class = "icon-recEnable" > < / i >
< / a >
< / span >
< div class = "header_button_separator" > < / div >
2015-02-06 15:46:50 +00:00
< a class = "button" id = "toolbar_button_security" data-container = "body" data-toggle = "popover" data-placement = "bottom" data-i18n = "[content]toolbar.lock" content = "Lock / unlock room" >
2014-08-21 16:42:54 +00:00
< i id = "lockIcon" class = "icon-security" > < / i >
2014-08-19 11:43:30 +00:00
< / a >
2014-06-20 09:00:49 +00:00
< div class = "header_button_separator" > < / div >
2015-02-06 15:46:50 +00:00
< a class = "button" id = "toolbar_button_link" data-container = "body" data-toggle = "popover" data-placement = "bottom" data-i18n = "[content]toolbar.invite" content = "Invite others" >
2014-08-21 16:42:54 +00:00
< i class = "icon-link" > < / i >
2014-08-19 11:43:30 +00:00
< / a >
2014-08-21 16:42:54 +00:00
< div class = "header_button_separator" > < / div >
< span class = "toolbar_span" >
2015-02-06 15:46:50 +00:00
< a class = "button" id = "toolbar_button_chat" data-container = "body" data-toggle = "popover" shortcut = "toggleChatPopover" data-placement = "bottom" data-i18n = "[content]toolbar.chat" content = "Open / close chat" >
2014-10-02 09:30:46 +00:00
< i id = "chatButton" class = "icon-chat" >
< span id = "unreadMessages" > < / span >
< / i >
2014-08-21 16:42:54 +00:00
< / a >
< / span >
2014-09-23 12:27:12 +00:00
< span id = "prezi_button" >
< div class = "header_button_separator" > < / div >
2015-02-06 15:46:50 +00:00
< a class = "button" id = "toolbar_button_prezi" data-container = "body" data-toggle = "popover" data-placement = "bottom" data-i18n = "[content]toolbar.prezi" content = "Share Prezi" >
2014-09-23 12:27:12 +00:00
< i class = "icon-prezi" > < / i >
< / a >
< / span >
2014-08-21 16:42:54 +00:00
< span id = "etherpadButton" >
< div class = "header_button_separator" > < / div >
2015-02-06 15:46:50 +00:00
< a class = "button" id = "toolbar_button_etherpad" data-container = "body" data-toggle = "popover" data-placement = "bottom" content = "Shared document" data-i18n = "[content]toolbar.etherpad" >
2014-08-21 16:42:54 +00:00
< i class = "icon-share-doc" > < / i >
< / a >
< / span >
< div class = "header_button_separator" > < / div >
< span id = "desktopsharing" style = "display: none" >
2015-02-06 15:46:50 +00:00
< a class = "button" id = "toolbar_button_desktopsharing" data-container = "body" data-toggle = "popover" data-placement = "bottom" content = "Share screen" data-i18n = "[content]toolbar.sharescreen" >
2014-08-21 16:42:54 +00:00
< i class = "icon-share-desktop" > < / i >
< / a >
< / span >
2014-08-08 13:25:24 +00:00
< div class = "header_button_separator" > < / div >
2015-02-06 15:46:50 +00:00
< a class = "button" id = "toolbar_button_fullScreen" data-container = "body" data-toggle = "popover" data-placement = "bottom" content = "Enter / Exit Full Screen" data-i18n = "[content]toolbar.fullscreen" >
2014-08-21 16:42:54 +00:00
< i id = "fullScreen" class = "icon-full-screen" > < / i >
< / a >
2014-09-23 07:51:32 +00:00
< span id = "sipCallButton" style = "display: none" >
2014-08-21 16:42:54 +00:00
< div class = "header_button_separator" > < / div >
2015-02-06 15:46:50 +00:00
< a class = "button" id = "toolbar_button_sip" data-container = "body" data-toggle = "popover" data-placement = "bottom" content = "Call SIP number" data-i18n = "[content]toolbar.sip" >
2014-08-21 16:42:54 +00:00
< i class = "icon-telephone" > < / i > < / a >
2015-04-08 10:51:29 +00:00
< / span >
< span id = "dialPadButton" style = "display: none" >
< div class = "header_button_separator" > < / div >
< a class = "button" id = "toolbar_button_dialpad" data-container = "body" data-toggle = "popover" data-placement = "bottom" content = "Open dialpad" data-i18n = "[content]toolbar.dialpad" >
< i class = "icon-dialpad" > < / i > < / a >
2014-08-21 16:42:54 +00:00
< / span >
2014-08-25 12:52:20 +00:00
< div class = "header_button_separator" > < / div >
2015-02-06 15:46:50 +00:00
< a class = "button" id = "toolbar_button_settings" data-container = "body" data-toggle = "popover" data-placement = "bottom" content = "Settings" data-i18n = "[content]toolbar.Settings" >
2014-10-31 11:47:12 +00:00
< i id = "settingsButton" class = "icon-settings" > < / i >
< / a >
< div class = "header_button_separator" > < / div >
2014-08-25 12:52:20 +00:00
< span id = "hangup" >
2015-02-06 15:46:50 +00:00
< a class = "button" id = "toolbar_button_hangup" data-container = "body" data-toggle = "popover" data-placement = "bottom" content = "Hang Up" data-i18n = "[content]toolbar.hangup" >
2014-08-29 08:49:44 +00:00
< i class = "icon-hangup" style = "color:#ff0000;font-size: 1.4em;" > < / i >
2014-08-25 12:52:20 +00:00
< / a >
< / span >
2014-08-08 13:25:24 +00:00
< / span >
2014-08-21 16:42:54 +00:00
< / div >
< div id = "subject" > < / div >
2014-06-20 09:00:49 +00:00
< / div >
2015-01-07 14:54:03 +00:00
< div id = "reloadPresentation" > < a id = "reloadPresentationLink" > < i title = "Reload Prezi" class = "fa fa-repeat fa-lg" > < / i > < / a > < / div >
< div id = "videospace" >
2014-08-21 16:42:54 +00:00
< div id = "largeVideoContainer" class = "videocontainer" >
< div id = "presentation" > < / div >
< div id = "etherpad" > < / div >
2014-09-30 15:22:22 +00:00
< a target = "_new" > < div class = "watermark leftwatermark" > < / div > < / a >
< a target = "_new" > < div class = "watermark rightwatermark" > < / div > < / a >
2015-02-06 15:46:50 +00:00
< a class = "poweredby" href = "http://jitsi.org" target = "_new" > < span data-i18n = "poweredby" > < / span > jitsi.org< / a >
2014-12-12 09:32:16 +00:00
< div id = "activeSpeaker" >
< img id = "activeSpeakerAvatar" src = "" / >
< canvas id = "activeSpeakerAudioLevel" > < / canvas >
< / div >
2014-08-21 16:42:54 +00:00
< video id = "largeVideo" autoplay oncontextmenu = "return false;" > < / video >
< / div >
< div id = "remoteVideos" >
< span id = "localVideoContainer" class = "videocontainer" >
< span id = "localNick" class = "nick" > < / span >
< span id = "localVideoWrapper" >
<!-- <video id="localVideo" autoplay oncontextmenu="return false;" muted></video> - is now per stream generated -->
< / span >
< audio id = "localAudio" autoplay oncontextmenu = "return false;" muted > < / audio >
< span class = "focusindicator" > < / span >
2014-03-26 10:33:46 +00:00
< / span >
2014-08-21 16:42:54 +00:00
< audio id = "userJoined" src = "sounds/joined.wav" preload = "auto" > < / audio >
< audio id = "userLeft" src = "sounds/left.wav" preload = "auto" > < / audio >
< / div >
2014-08-22 15:37:11 +00:00
< span id = "bottomToolbar" >
< span class = "bottomToolbar_span" >
2015-02-06 15:46:50 +00:00
< a class = "bottomToolbarButton" id = "bottom_toolbar_chat" data-container = "body" data-toggle = "popover" shortcut = "toggleChatPopover" data-placement = "top" data-i18n = "[content]bottomtoolbar.chat" content = "Open / close chat" >
2014-10-02 09:30:46 +00:00
< i id = "chatBottomButton" class = "icon-chat-simple" >
< span id = "bottomUnreadMessages" > < / span >
< / i >
2014-08-22 15:37:11 +00:00
< / a >
< / span >
2014-09-18 13:26:12 +00:00
< div class = "bottom_button_separator" > < / div >
2014-08-22 15:37:11 +00:00
< span class = "bottomToolbar_span" >
2015-02-06 15:46:50 +00:00
< a class = "bottomToolbarButton" id = "bottom_toolbar_contact_list" data-container = "body" data-toggle = "popover" data-placement = "top" id = "contactlistpopover" data-i18n = "[content]bottomtoolbar.contactlist" content = "Open / close contact list" >
2014-11-03 14:55:45 +00:00
< i id = "contactListButton" class = "icon-contactList" >
< span id = "numberOfParticipants" > < / span >
< / i >
2014-08-22 15:37:11 +00:00
< / a >
2014-09-04 08:15:48 +00:00
< / span >
2014-09-18 13:26:12 +00:00
< div class = "bottom_button_separator" > < / div >
2014-09-04 08:15:48 +00:00
< span class = "bottomToolbar_span" >
2015-02-06 15:46:50 +00:00
< a class = "bottomToolbarButton" id = "bottom_toolbar_film_strip" data-container = "body" data-toggle = "popover" shortcut = "filmstripPopover" data-placement = "top" data-i18n = "[content]bottomtoolbar.filmstrip" content = "Show / hide film strip" >
2014-09-04 08:15:48 +00:00
< i id = "filmStripButton" class = "icon-filmstrip" > < / i >
< / a >
2014-08-22 15:37:11 +00:00
< / span >
< / span >
2013-12-16 11:22:23 +00:00
< / div >
2014-10-31 11:47:12 +00:00
< div id = "chatspace" class = "right-panel" >
2014-08-21 16:42:54 +00:00
< div id = "nickname" >
2015-02-06 15:46:50 +00:00
< span data-i18n = "chat.nickname.title" > < / span >
2014-08-21 16:42:54 +00:00
< form >
2015-02-06 15:46:50 +00:00
< input type = 'text' id = "nickinput" data-i18n = "[placeholder]chat.nickname.popover" autofocus >
2014-08-21 16:42:54 +00:00
< / form >
< / div >
2014-02-18 19:11:27 +00:00
2014-08-21 16:42:54 +00:00
<!-- div><i class="fa fa - comments"> </i><span class='nick'></span>: <span class='chattext'></span></div -->
< div id = "chatconversation" > < / div >
< audio id = "chatNotification" src = "sounds/incomingMessage.wav" preload = "auto" > < / audio >
2015-02-06 15:46:50 +00:00
< textarea id = "usermsg" data-i18n = "[placeholder]chat.messagebox" autofocus > < / textarea >
2014-10-10 10:57:00 +00:00
< div id = "smileysarea" >
2015-01-07 14:54:03 +00:00
< div id = "smileys" id = "toggle_smileys" >
2014-10-10 10:57:00 +00:00
< img src = "images/smile.svg" / >
< / div >
< / div >
2014-08-21 16:42:54 +00:00
< / div >
2014-10-31 11:47:12 +00:00
< div id = "contactlist" class = "right-panel" >
2014-08-25 12:48:16 +00:00
< ul >
2015-02-06 15:46:50 +00:00
< li class = "title" > < i class = "icon-contact-list" > < / i > < span data-i18n = "contactlist" > < / span > < / li >
2014-08-25 12:48:16 +00:00
< / ul >
< / div >
2014-10-31 11:47:12 +00:00
< div id = "settingsmenu" class = "right-panel" >
2015-02-06 15:46:50 +00:00
< div class = "icon-settings" data-i18n = "settings.title" > < / div >
2014-12-12 12:18:36 +00:00
< img id = "avatar" src = "https://www.gravatar.com/avatar/87291c37c25be69a072a4514931b1749?d=wavatar&size=30" / >
2014-10-31 11:47:12 +00:00
< div class = "arrow-up" > < / div >
2015-02-06 15:46:50 +00:00
< input type = "text" id = "setDisplayName" data-i18n = "[placeholder]settings.name" placeholder = "Name" >
2014-10-31 11:47:12 +00:00
< input type = "text" id = "setEmail" placeholder = "E-Mail" >
2015-05-19 15:03:01 +00:00
< div id = "startMutedOptions" >
< label class = "startMutedLabel" >
< input type = "checkbox" id = "startAudioMuted" >
< span data-i18n = "settings.startAudioMuted" > < / span >
< / label >
< label class = "startMutedLabel" >
< input type = "checkbox" id = "startVideoMuted" >
< span data-i18n = "settings.startVideoMuted" > < / span >
< / label >
< / div >
2015-02-06 15:46:50 +00:00
< button id = "updateSettings" data-i18n = "settings.update" > < / button >
2014-10-31 11:47:12 +00:00
< / div >
2015-04-15 08:17:01 +00:00
< a id = "downloadlog" data-container = "body" data-toggle = "popover" data-placement = "right" data-i18n = "[data-content]downloadlogs" > < i class = "fa fa-cloud-download" > < / i > < / a >
2013-12-16 11:22:23 +00:00
< / div >
< / body >
< / html >