|
147 | 147 | <table v-if="latestExport.coverageReport && latestExport.coverageReport.length" class="my-learning-record__table"> |
148 | 148 | <thead> |
149 | 149 | <tr> |
150 | | - <th>{{ t('scholiq', 'Source') }}</th> |
151 | | - <th>{{ t('scholiq', 'Outcome') }}</th> |
152 | | - <th>{{ t('scholiq', 'Reason') }}</th> |
| 150 | + <th scope="col">{{ t('scholiq', 'Source') }}</th> |
| 151 | + <th scope="col">{{ t('scholiq', 'Outcome') }}</th> |
| 152 | + <th scope="col">{{ t('scholiq', 'Reason') }}</th> |
153 | 153 | </tr> |
154 | 154 | </thead> |
155 | 155 | <tbody> |
|
179 | 179 | <input id="recipient-name" v-model="newShare.recipientName" type="text"> |
180 | 180 |
|
181 | 181 | <label for="recipient-email">{{ t('scholiq', 'Recipient email (optional)') }}</label> |
182 | | - <input id="recipient-email" v-model="newShare.recipientEmail" type="email"> |
| 182 | + <!-- autocomplete="off", not "email": this collects a THIRD PARTY's address |
| 183 | + (an employer, a receiving school), never the signed-in user's own, so |
| 184 | + offering the user's own email here would be the wrong suggestion. --> |
| 185 | + <input |
| 186 | + id="recipient-email" |
| 187 | + v-model="newShare.recipientEmail" |
| 188 | + type="email" |
| 189 | + autocomplete="off"> |
183 | 190 |
|
184 | 191 | <label for="expires-at">{{ t('scholiq', 'Expires on') }}</label> |
185 | 192 | <input id="expires-at" v-model="newShare.expiresAt" type="date"> |
|
202 | 209 | <table v-if="shares.length" class="my-learning-record__table"> |
203 | 210 | <thead> |
204 | 211 | <tr> |
205 | | - <th>{{ t('scholiq', 'Recipient') }}</th> |
206 | | - <th>{{ t('scholiq', 'Expires') }}</th> |
207 | | - <th>{{ t('scholiq', 'Status') }}</th> |
208 | | - <th>{{ t('scholiq', 'Verification link') }}</th> |
209 | | - <th>{{ t('scholiq', 'Action') }}</th> |
| 212 | + <th scope="col">{{ t('scholiq', 'Recipient') }}</th> |
| 213 | + <th scope="col">{{ t('scholiq', 'Expires') }}</th> |
| 214 | + <th scope="col">{{ t('scholiq', 'Status') }}</th> |
| 215 | + <th scope="col">{{ t('scholiq', 'Verification link') }}</th> |
| 216 | + <th scope="col">{{ t('scholiq', 'Action') }}</th> |
210 | 217 | </tr> |
211 | 218 | </thead> |
212 | 219 | <tbody> |
|
0 commit comments