Skip to content

Commit

Permalink
Minor fixes (#341)
Browse files Browse the repository at this point in the history
* fixed image paths

* changed image path
  • Loading branch information
stephanprantl authored Nov 5, 2022
1 parent 0eee2ab commit e514ca2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<li class="nav-item dropdown" dropdown placement="bottom right">
<a class="nav-link" data-toggle="dropdown" href="" role="button" aria-haspopup="true" aria-expanded="false"
dropdownToggle (click)="false">
<img src="/assets/img/user/user.svg" class="img-avatar" />
<img src="./assets/img/user/user.svg" class="img-avatar" />
</a>
<div class="dropdown-menu dropdown-menu-right" *dropdownMenu aria-labelledby="simple-dropdown">
<div class="dropdown-header text-center"><strong>Benutzer</strong></div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<div class="card p-4">
<div class="card-body">
<div class="mb-4 text-center">
<img src="/assets/img/brand/logo.svg" width="200px" class="mb-2"/>
<img src="./assets/img/brand/logo.svg" width="200px" class="mb-2"/>
<h3>Tafel Admin - Passwort ändern</h3>
</div>
<div class="row">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<div class="card-body">
<form [formGroup]="loginForm" (ngSubmit)="login()">
<div class="mb-4 text-center">
<img src="/assets/img/brand/logo.svg" width="200px" class="mb-2" />
<img src="./assets/img/brand/logo.svg" width="200px" class="mb-2" />
<h1>Tafel Admin</h1>
</div>
<div testid="errorMessage" *ngIf="errorMessage" class="alert alert-danger">
Expand Down

0 comments on commit e514ca2

Please sign in to comment.