Files
edx-platform/lms/templates/fields/message_banner.underscore
Jeff Chaves 87f444fd44 ENT-3143: display message banner guiding user to their enterprise LP if enabled (#24625)
* display message banner guiding user to their enterprise LP if enabled

* adding new sass class name to use same styling as recovery email alert
2020-07-29 11:55:02 -04:00

11 lines
534 B
Plaintext

<div id="banner-msg" class="wrapper-msg urgency-<%- urgency %> <%- type %> <% if (isRecoveryEmailMsg == true) { %> recovery-email-alert <% } %> <% if (isLearnerPortalEnabled == true) { %> learner-portal-enabled-alert <% } %>" role="alert">
<i <% if (hideCloseBtn == true) { %> hidden <% } %> id="close" class="fa fa-close close-icon"></i>
<div class="msg">
<div class="msg-content">
<div class="copy">
<p><%= HtmlUtils.HTML(message) %></p>
</div>
</div>
</div>
</div>