removed not used stuff
This commit is contained in:
parent
b010d49752
commit
7d4cfe1794
@ -3,12 +3,12 @@
|
|||||||
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
|
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
|
||||||
<!-- logo goes here -->
|
<!-- logo goes here -->
|
||||||
<div class="flex gap-4">
|
<div class="flex gap-4">
|
||||||
<button (click)="onLogout()" class="btn-primary">
|
<button class="btn-primary">
|
||||||
Ausloggen
|
Ausloggen
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<button (click)="openUserInfo()" class="btn-primary">
|
<button class="btn-primary">
|
||||||
Benutzer
|
Benutzer
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,23 +0,0 @@
|
|||||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
||||||
|
|
||||||
import { HomepageComponent } from './homepage.component';
|
|
||||||
|
|
||||||
describe('HomepageComponent', () => {
|
|
||||||
let component: HomepageComponent;
|
|
||||||
let fixture: ComponentFixture<HomepageComponent>;
|
|
||||||
|
|
||||||
beforeEach(async () => {
|
|
||||||
await TestBed.configureTestingModule({
|
|
||||||
imports: [HomepageComponent]
|
|
||||||
})
|
|
||||||
.compileComponents();
|
|
||||||
|
|
||||||
fixture = TestBed.createComponent(HomepageComponent);
|
|
||||||
component = fixture.componentInstance;
|
|
||||||
fixture.detectChanges();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should create', () => {
|
|
||||||
expect(component).toBeTruthy();
|
|
||||||
});
|
|
||||||
});
|
|
@ -5,16 +5,8 @@ import {ChangeDetectionStrategy, Component} from '@angular/core';
|
|||||||
standalone: true,
|
standalone: true,
|
||||||
imports: [],
|
imports: [],
|
||||||
templateUrl: './homepage.component.html',
|
templateUrl: './homepage.component.html',
|
||||||
styleUrl: './homepage.component.css',
|
|
||||||
changeDetection: ChangeDetectionStrategy.OnPush
|
changeDetection: ChangeDetectionStrategy.OnPush
|
||||||
})
|
})
|
||||||
export class HomepageComponent {
|
export class HomepageComponent {
|
||||||
|
|
||||||
onLogout() {
|
|
||||||
//TODO implement
|
|
||||||
}
|
|
||||||
|
|
||||||
openUserInfo() {
|
|
||||||
//TODO implement
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user