Merge in UI updates #19
@@ -18,15 +18,10 @@ Server:
|
|||||||
Need to update notification email
|
Need to update notification email
|
||||||
|
|
||||||
Client:
|
Client:
|
||||||
jobs/new:
|
jobs/editor:
|
||||||
Job Listing Skills exists but isn't implimented in the UI
|
Job Listing Skills exists but isn't implimented in the UI
|
||||||
Tab doesnt do anything
|
Tab doesnt do anything
|
||||||
Want to add completed job listing preview at end of carosel
|
Want to add completed job listing preview at end of carosel
|
||||||
Edit employees not implimented yet
|
|
||||||
|
|
||||||
Jobs/editor:
|
|
||||||
Jobs/editor w/ Querystring JobID=# is not implimented yet
|
|
||||||
Edit employees not implimented yet
|
|
||||||
|
|
||||||
Resume:
|
Resume:
|
||||||
Resume builder minimal user input [ Dont allow AI input ]
|
Resume builder minimal user input [ Dont allow AI input ]
|
||||||
@@ -38,9 +33,17 @@ Client:
|
|||||||
Allow users to look up jobs and apply [ Boost visibility | Completely manual ]
|
Allow users to look up jobs and apply [ Boost visibility | Completely manual ]
|
||||||
Mark ghost listings to allow users to be informed and put companies on blast
|
Mark ghost listings to allow users to be informed and put companies on blast
|
||||||
|
|
||||||
CompanyConnect:
|
company/editor:
|
||||||
need to lookup company before making a new one
|
Need to lookup company before making a new one
|
||||||
|
Tab key does nothing
|
||||||
|
Format phone number for database
|
||||||
|
Check DataType's for email and phone.
|
||||||
|
Setup QueryParam's for Edit and New
|
||||||
|
Edit employees not implimented yet
|
||||||
|
|
||||||
|
Company:
|
||||||
|
No employees for table yet
|
||||||
|
|
||||||
|
|
||||||
database:
|
database:
|
||||||
Add Applied Jobs Table
|
Add Applied Jobs Table
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
<div class="top-bar">
|
<div class="top-bar">
|
||||||
<div class="top-bar-buttons">
|
<div class="top-bar-buttons">
|
||||||
<a #jobsLink class="nav-button" routerLink="/jobs">JOB BOARD</a>
|
<a class="nav-button" routerLink="/jobs" routerLinkActive="active">JOB BOARD</a>
|
||||||
<a #resumesLink class="nav-button" routerLink="/resumes">RESUMES</a>
|
<a class="nav-button" routerLink="/resumes" routerLinkActive="active">RESUMES</a>
|
||||||
<a #companiesLink class="nav-button" routerLink="/company">COMPANIES</a>
|
<a class="nav-button" routerLink="/company" routerLinkActive="active">COMPANIES</a>
|
||||||
</div>
|
</div>
|
||||||
<a class="top-bar-logo" routerLink="">
|
<a class="top-bar-logo" routerLink="">
|
||||||
<img class="top-bar-logo" style="margin: 0;" src="img/logo-full.png" />
|
<img class="top-bar-logo" style="margin: 0;" src="img/logo-full.png" />
|
||||||
|
|||||||
@@ -6,9 +6,8 @@ import { PrivacyComponent } from './pages/legal/privacy/privacy.component';
|
|||||||
import { JobsComponent } from './pages/main/jobs/jobs.component';
|
import { JobsComponent } from './pages/main/jobs/jobs.component';
|
||||||
import { ResumesComponent } from './pages/main/resumes/resumes.component';
|
import { ResumesComponent } from './pages/main/resumes/resumes.component';
|
||||||
import { JobEditorComponent } from './pages/main/jobs/editor/jobeditor.component';
|
import { JobEditorComponent } from './pages/main/jobs/editor/jobeditor.component';
|
||||||
import { CompanyConnectComponent } from './pages/main/company/connect/companyconnect.component';
|
import { CompanyEditorComponent } from './pages/main/company/editor/editor.component';
|
||||||
import { JobViewerComponent } from './pages/main/jobs/viewer/jobviewer.component';
|
import { JobViewerComponent } from './pages/main/jobs/viewer/jobviewer.component';
|
||||||
import { CompanyJobsComponent } from './pages/main/company/jobs/jobs.component';
|
|
||||||
import { CompanyComponent } from './pages/main/company/company.component';
|
import { CompanyComponent } from './pages/main/company/company.component';
|
||||||
|
|
||||||
export const routes: Routes = [
|
export const routes: Routes = [
|
||||||
@@ -26,11 +25,11 @@ export const routes: Routes = [
|
|||||||
|
|
||||||
// Company
|
// Company
|
||||||
{ path: "company", component: CompanyComponent },
|
{ path: "company", component: CompanyComponent },
|
||||||
{ path: "company/connect", component: CompanyConnectComponent },
|
{ path: "company/editor", component: CompanyEditorComponent },
|
||||||
{ path: "company/jobs", component: CompanyJobsComponent },
|
|
||||||
|
|
||||||
// Legal
|
// Legal
|
||||||
{ path: "about", component: AboutComponent },
|
{ path: "about", component: AboutComponent },
|
||||||
{ path: "contact", component: ContactComponent },
|
{ path: "contact", component: ContactComponent },
|
||||||
{ path: "privacy", component: PrivacyComponent }
|
{ path: "privacy", component: PrivacyComponent }
|
||||||
|
|
||||||
]
|
]
|
||||||
Reference in New Issue
Block a user