forked from External/greenlight
notify user when joining without name provided
This commit is contained in:
@ -66,14 +66,6 @@
|
||||
<%= t('client.unpublished') %>
|
||||
</button>
|
||||
</div>
|
||||
<div class="alert-template">
|
||||
<div class="alert alert-success alert-dismissible fade in" role="alert">
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
<span class="alert-message"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="recording-actions">
|
||||
<button type="button" class="btn btn-default has-popover recording-update-trigger visibility-tooltip"
|
||||
data-placement="left" data-popover-body=".recording-visibility-popover"
|
||||
|
@ -78,5 +78,15 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
||||
<%= t('footer_html', bbb_link: link_to('BigBlueButton', 'http://bigbluebutton.org/', target: "_blank")) %>.<br><br>
|
||||
</div>
|
||||
<!-- End of Footer -->
|
||||
<div hidden class="hidden-elements">
|
||||
<div class="alert-template">
|
||||
<div class="alert alert-success alert-dismissible fade in" role="alert">
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
<span class="alert-message"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -44,7 +44,9 @@
|
||||
|
||||
<!-- if not signed in show field to enter name -->
|
||||
<% else %>
|
||||
<%= text_field_tag 'user[name]', '', class: 'form-control meeting-user-name', placeholder: t('enter_name'), maxlength: user_name_limit %>
|
||||
<div class="input-wrapper">
|
||||
<%= text_field_tag 'user[name]', '', class: 'form-control meeting-user-name', placeholder: t('enter_name'), maxlength: user_name_limit %>
|
||||
</div>
|
||||
<span class="input-group-btn">
|
||||
<button type="button" class="btn btn-primary center-block meeting-join">
|
||||
<%= t('join') %>
|
||||
|
Reference in New Issue
Block a user