@@ -32,21 +32,21 @@ $validationResult = EngineBlock_ApplicationSingleton::getInstance()
3232 <?php if (isset ($ _POST ['mail ' ]) && $ _POST ['mail ' ] === 'true ' ):?>
3333 <table class="comp-table">
3434 <tr>
35- <td><img src="/images/checkmark.svg" class="c-icon c-icon-checkmark" /><?= $ this ->t ('attributes_data_mailed ' ); ?> </td>
35+ <td><img src="/images/checkmark.svg" class="c-icon c-icon-checkmark" alt="✅" /><?= $ this ->t ('attributes_data_mailed ' ); ?> </td>
3636 </tr>
3737 </table>
3838 <?php endif ; ?>
3939
4040 <h1><?php echo $ this ->t ('idp_debugging_title ' ); ?> </h1>
4141 <p>
4242 <?php if ($ validationResult ->isValid ()) : ?>
43- <img src="/images/checkmark.svg" class="c-icon c-icon-checkmark" />
43+ <img src="/images/checkmark.svg" class="c-icon c-icon-checkmark" alt="✅" />
4444 <?= $ this ->t ('attributes_validation_succeeded ' ); ?>
4545 <?php else : ?>
4646 <?php if (count ($ validationResult ->getErrors ()) > 0 ): ?>
47- <img src="/images/warning.svg" class="c-icon c-icon-warning" />
47+ <img src="/images/warning.svg" class="c-icon c-icon-warning" alt="⚠" />
4848 <?php else : ?>
49- <img src="/images/warning.svg" class="c-icon c-icon-warning" />
49+ <img src="/images/warning.svg" class="c-icon c-icon-warning" alt="⚠" />
5050 <?php endif ; ?>
5151
5252 <?= $ this ->t ('attributes_validation_failed ' ); ?>
@@ -66,7 +66,7 @@ $validationResult = EngineBlock_ApplicationSingleton::getInstance()
6666 Logo
6767 </th>
6868 <td>
69- <img class="logo" src="<?= $ idp ->logo ? $ idp ->logo ->url : '/images/placeholder.png ' ?> " />
69+ <img class="logo" src="<?= $ idp ->logo ? $ idp ->logo ->url : '/images/placeholder.png ' ?> " alt="IdP logo" />
7070 </td>
7171 </tr>
7272 <tr>
@@ -112,13 +112,13 @@ $validationResult = EngineBlock_ApplicationSingleton::getInstance()
112112 <h2><?= $ this ->t ('attributes ' ) ?> </h2>
113113 <?php foreach ($ validationResult ->getErrorsForMissingAttributes () as $ error ): ?>
114114 <p class="error">
115- <img src="/images/warning.svg" class="c-icon c-icon-warning" /> <?php
115+ <img src="/images/warning.svg" class="c-icon c-icon-warning" alt="⚠" /> <?php
116116 echo EngineBlock_View::htmlSpecialCharsText (call_user_func_array (array ($ this , 'translate ' ), $ error ));
117117 ?> </p>
118118 <?php endforeach ; ?>
119119 <?php foreach ($ validationResult ->getWarningsForMissingAttributes () as $ warning ): ?>
120120 <p class="warning">
121- <img src="/images/warning.svg" class="c-icon c-icon-warning" /> <?php
121+ <img src="/images/warning.svg" class="c-icon c-icon-warning" alt="⚠" /> <?php
122122 echo EngineBlock_View::htmlSpecialCharsText (call_user_func_array (array ($ this , 'translate ' ), $ warning ));
123123 ?> </p>
124124 <?php endforeach ; ?>
@@ -162,17 +162,17 @@ $validationResult = EngineBlock_ApplicationSingleton::getInstance()
162162 </td>
163163 <td>
164164 <?php if ($ validationResult ->isValid ($ attributeName )): ?>
165- <img src="/images/checkmark.svg" class="c-icon c-icon-checkmark" />
165+ <img src="/images/checkmark.svg" class="c-icon c-icon-checkmark" alt="✅" />
166166 <?php else :
167167 foreach ($ validationResult ->getErrors ($ attributeName ) as $ error ) {
168168 echo '<p class="error"> ' .
169- '<img src="/images/warning.svg" class="c-icon c-icon-warning" /> ' .
169+ '<img src="/images/warning.svg" class="c-icon c-icon-warning" alt="⚠" /> ' .
170170 EngineBlock_View::htmlSpecialCharsText (call_user_func_array (array ($ this , 'translate ' ), $ error )) .
171171 '</p> ' ;
172172 }
173173 foreach ($ validationResult ->getWarnings ($ attributeName ) as $ warning ) {
174174 echo '<p class="warning"> ' .
175- '<img src="/images/warning.svg" class="c-icon c-icon-warning" /> ' .
175+ '<img src="/images/warning.svg" class="c-icon c-icon-warning" alt="⚠" /> ' .
176176 EngineBlock_View::htmlSpecialCharsText (call_user_func_array (array ($ this , 'translate ' ), $ warning )) .
177177 '</p> ' ;
178178 }
0 commit comments