The communications platform that puts data protection first.
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.
 
 
 
 
 
Rocket.Chat/client/views/modal.html

25 lines
789 B

<template name="modal">
<section id="{{this.id}}" class="rocket-modal {{this.class}}" tabindex="-1" role="dialog" aria-hidden="true">
<div class="wrapper">
<div class="window">
<form id="{{this.id}}-form" class="modal form-horizontal">
<header>
<h3>{{this.title}}</h3>
<span class="close"><i class="fa fa-close"></i></span>
</header>
<main>
{{> UI.contentBlock}}
</main>
<footer>
{{#if this.save}}
<button class="-btn primary" type="submit" data-loading-text="{{_ "general.Please_wait"}}..."><span>{{this.save}}</span></button>
{{/if}}
{{#if this.close}}
<button class="-btn delete"><span>{{this.close}}</span></button>
{{/if}}
</footer>
</form>
</div>
</div>
</section>
</template>