1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-04-15 23:47:24 +02:00

Accessibility: index: aria-expanded on dropdown menu buttons, aliases: fieldset on permitted senders, mfa: fix incorrect id's and alt on qr code (#2555)

* accessibility: aria-expandedon dropdowns, fieldset on aliases > permitted senders, mfa label corrections and alt on qr image

* further change
This commit is contained in:
Tim in 't Veld
2026-04-08 15:06:14 +02:00
committed by GitHub
parent 6019c16f71
commit 146ebaa9e9
2 changed files with 29 additions and 9 deletions

View File

@@ -45,21 +45,40 @@
</div>
</div>
</div>
<div class="form-group">
<div class="form-group">
<fieldset>
<legend>
<label for="addaliasSenders" class="col-sm-1 control-label">Permitted Senders</label>
</legend>
<div class="col-sm-10">
<div class="radio">
<label>
<input id="addaliasForwardsToNotAdvanced" name="addaliasForwardsToDivToggle" type="radio" checked onclick="$('#addaliasForwardsToDiv').toggle(false)">
Any mail user listed in the Forwards To box can send mail claiming to be from <span class="regularalias">the alias address</span><span class="catchall domainalias">any address on the alias domain</span>.
<label for="addaliasForwardsToNotAdvanced">
<input id="addaliasForwardsToNotAdvanced"
name="addaliasForwardsToDivToggle"
type="radio"
checked
onclick="$('#addaliasForwardsToDiv').toggle(false)">
Any mail user listed in the Forwards To box can send mail claiming to be from
<span class="regularalias">the alias address</span>
<span class="catchall domainalias">any address on the alias domain</span>.
</label>
</div>
<div class="radio">
<label>
<input id="addaliasForwardsToAdvanced" name="addaliasForwardsToDivToggle" type="radio" id="addaliasForwardsToDivShower" onclick="$('#addaliasForwardsToDiv').toggle(true)">
I&rsquo;ll enter the mail users that can send mail claiming to be from <span class="regularalias">the alias address</span><span class="catchall domainalias">any address on the alias domain</span>.
<label for="addaliasForwardsToAdvanced">
<input id="addaliasForwardsToAdvanced"
name="addaliasForwardsToDivToggle"
type="radio"
onclick="$('#addaliasForwardsToDiv').toggle(true)">
I&rsquo;ll enter the mail users that can send mail claiming to be from
<span class="regularalias">the alias address</span>
<span class="catchall domainalias">any address on the alias domain</span>.
</label>
</div>
</div>
</fieldset>
</div>
<div id="addaliasForwardsToDiv" style="margin-top: .5em; margin-left: 1.4em; display: none;">
<textarea class="form-control" rows="3" id="addaliasSenders" placeholder="one user per line or separated by commas"></textarea>
</div>