Login Message / Announcement

Hi folks,
Just wondering if there’s any way to have announcements or a message on the LOGIN screen.
So - before anyone even logs in, there can be a message box down the bottom with:

Changes made to login format: use “DOMAIN\Username” instead of “Username@domain.net

Thoughts?

  1. by patching the icingaweb2 sourcecode this can be achieved instandly.
    simply add
<div id="header">
    <div id="announcements" class="container">
        <?= $this->widget('announcements') ?>
    </div>
</div>

to the top of /usr/share/icingaweb2/application/views/scripts/authentication/login.phtml

  1. you could start a feature request via github
  2. you could write a icingaweb2 module for public announcements and render the anouncements via javascript
2 Likes

Thanks @moreamazingnick !!
Suggestion 1 solves my immediate issue perfectly!