mirror of https://github.com/zulip/zulip.git
17 lines
658 B
HTML
17 lines
658 B
HTML
|
<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="{{ _('Close') }}"><span aria-hidden="true">×</span></button>
|
||
|
<h3 id="deprecation-notice-label">{{ _('Deprecation notice') }}</h3>
|
||
|
</div>
|
||
|
|
||
|
<div class="modal-body">
|
||
|
<p id="deprecation-notice-message"></p>
|
||
|
</div>
|
||
|
|
||
|
<div class="modal-footer">
|
||
|
<button type="button" class="button rounded" data-dismiss="modal">{{ _("Got it") }}</button>
|
||
|
</div>
|
||
|
</div>
|