20 lines
844 B
HTML
20 lines
844 B
HTML
<div class="top-bar">
|
|
<button *ngFor="let company of Employers" (click)="changeSelectedCompany(company.company.id!)">{{ company.company.name.toUpperCase() }}</button>
|
|
<button routerLink="/company/connect" >CONNECT A COMPANY</button>
|
|
</div>
|
|
<div class="content-frame">
|
|
<div *ngIf="Comp != null">
|
|
<h1>{{ Comp.name }}</h1>
|
|
<h1>{{ Comp.email }}</h1>
|
|
<h1>{{ Comp.emailVerified }}</h1>
|
|
<h1>{{ Comp.websiteURL }}</h1>
|
|
<h1>{{ Comp.logoURL }}</h1>
|
|
<h1>{{ Comp.phone }}</h1>
|
|
<h1>{{ Comp.postalCode }}</h1>
|
|
<h1>{{ Comp.country }}</h1>
|
|
<h1>{{ Comp.stateOrRegion }}</h1>
|
|
<h1>{{ Comp.city }}</h1>
|
|
<h1>{{ Comp.description }}</h1>
|
|
<button routerLink="/company/jobs" [queryParams]="{ CompanyID: Comp.id }" >ACTIVE JOB LISTINGS</button>
|
|
</div>
|
|
</div> |