Skip to content

Commit

Permalink
FIX: Add Missing alt Attribute
Browse files Browse the repository at this point in the history
- #6
  • Loading branch information
aljawaid committed Feb 1, 2023
1 parent cba2e0e commit 68cb56b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Template/auth/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</style>

<section class="login-logo">
<img src="<?= $this->url->dir() ?>plugins/ApplicationBranding/Assets/img/workspace-icon-500x500.png" class="ws-logo">
<img src="<?= $this->url->dir() ?>plugins/ApplicationBranding/Assets/img/workspace-icon-500x500.png" class="ws-logo" alt="<?= t('Workspace logo') ?>">
<h3 class="no-top no-bottom login-title">
<?php if (!empty($this->task->configModel->get('app_rename'))): ?>
<?= strtoupper($this->task->configModel->get('app_rename')) ?>
Expand Down
2 changes: 1 addition & 1 deletion Template/password_reset/create.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}
</style>
<section class="login-logo">
<img src="<?= $this->url->dir() ?>plugins/ApplicationBranding/Assets/img/workspace-icon-500x500.png" class="ws-logo">
<img src="<?= $this->url->dir() ?>plugins/ApplicationBranding/Assets/img/workspace-icon-500x500.png" class="ws-logo" alt="<?= t('Workspace logo') ?>">
<h3 class="no-top no-bottom login-title">
<?php if (!empty($this->task->configModel->get('app_rename'))): ?>
<?= strtoupper($this->task->configModel->get('app_rename')) ?>
Expand Down
2 changes: 1 addition & 1 deletion Template/twofactor/check.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<section class="login-logo">
<img src="<?= $this->url->dir() ?>plugins/ApplicationBranding/Assets/img/workspace-icon-500x500.png" class="ws-logo">
<img src="<?= $this->url->dir() ?>plugins/ApplicationBranding/Assets/img/workspace-icon-500x500.png" class="ws-logo" alt="<?= t('Workspace logo') ?>">
<h3 class="no-top no-bottom login-title">
<?php if (!empty($this->task->configModel->get('app_rename'))): ?>
<?= strtoupper($this->task->configModel->get('app_rename')) ?>
Expand Down

0 comments on commit 68cb56b

Please sign in to comment.