mirror of https://github.com/dani/vroom.git
Video conf based on SimpleWebRTC https://vroom.fws.fr/documentation
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
39 lines
1.2 KiB
<div class="modal fade"
|
|
id="deleteRoomModal"
|
|
aria-hidden="true">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button class="close"*
|
|
data-dismiss="modal">
|
|
×
|
|
</button>
|
|
<h4 class="modal-title">
|
|
%= l('CONFIRM_DELETE')
|
|
</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p>
|
|
%= l('ROOM_WILL_BE_DELETED')
|
|
</p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<form id="deleteRoomForm"
|
|
class="form-horizontal">
|
|
<div class="form-group">
|
|
<div class="col-sm-offset-4 col-sm-8">
|
|
<button type="submit"
|
|
class="btn btn-danger">
|
|
%= l('DELETE')
|
|
</button>
|
|
<button class="btn btn-default"
|
|
data-dismiss="modal">
|
|
%= l('CANCEL')
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|