UI #4

Merged
derek merged 26 commits from UI into main 2025-07-18 19:59:18 -07:00
3 changed files with 37 additions and 0 deletions
Showing only changes of commit 485ad1b3de - Show all commits
@@ -0,0 +1,13 @@
<div class="tile-frame" *ngFor="let cur of ResumePage">
<div class="tile">
<h1>{{ cur.name }}</h1>
<h1>{{ cur.field }}</h1>
<h1>{{ cur.email }}</h1>
<h1>{{ cur.phoneNumber }}</h1>
<h1>{{ cur.city }}</h1>
<h1>{{ cur.stateOrRegion }}</h1>
<h1>{{ cur.country }}</h1>
<h1>{{ cur.postalCode }}</h1>
<h1>Active: {{ cur.isActive }}</h1>
</div>
</div>
@@ -0,0 +1,24 @@
import { Component } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { FormsModule } from '@angular/forms';
import { Router, ActivatedRoute } from '@angular/router';
import { Title } from '@angular/platform-browser';
import { CommonModule } from '@angular/common';
import { Resume } from 'app/models/Resume';
@Component({
selector: 'main-resumes',
templateUrl: './resumes.component.html',
styleUrls: [ './resumes.component.css' ],
imports: [ FormsModule, CommonModule ]
})
export class ResumesComponent {
public ResumePage: Resume[] = [];
constructor( private http: HttpClient, private router: Router, private route: ActivatedRoute, private title: Title ) {
this.title.setTitle("Resumes | BoredCareers");
};
}