notices.phtml 983 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. ?>
  8. <?php
  9. /**
  10. * @see \Magento\Backend\Block\Page\Notices
  11. */
  12. ?>
  13. <?php if ($block->displayNoscriptNotice()): ?>
  14. <noscript>
  15. <div class="messages">
  16. <div class="message message-warning message-noscript">
  17. <strong><?= /* @escapeNotVerified */ __('JavaScript may be disabled in your browser.') ?></strong>
  18. <?= /* @escapeNotVerified */ __('To use this website you must first enable JavaScript in your browser.') ?>
  19. </div>
  20. </div>
  21. </noscript>
  22. <?php endif; ?>
  23. <?php if ($block->displayDemoNotice()): ?>
  24. <div class="messages">
  25. <div class="message message-warning message-demo-mode">
  26. <?= /* @escapeNotVerified */ __('This is only a demo store. You can browse and place orders, but nothing will be processed.') ?>
  27. </div>
  28. </div>
  29. <?php endif; ?>