mirror of https://github.com/zulip/zulip.git
17 lines
691 B
Handlebars
17 lines
691 B
Handlebars
<div class="modal hide modal-bg new-style" id="deprecation-notice-modal" role="dialog"
|
|
aria-labelledby="deprecation-notice-label" aria-hidden="true">
|
|
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="{{t 'Close' }}"><span aria-hidden="true">×</span></button>
|
|
<h3 id="deprecation-notice-label">{{t "Deprecation notice" }}</h3>
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
<p id="deprecation-notice-message">{{message}}</p>
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button type="button" class="button rounded" id="close-deprecation-notice" data-dismiss="modal">{{t "Got it" }}</button>
|
|
</div>
|
|
</div>
|