-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Steve Lombardi <[email protected]>
- Loading branch information
1 parent
fb76fb8
commit 10f05bf
Showing
9 changed files
with
1,360 additions
and
2,658 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
client/src/app/accessibility/accessibility-routing.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { RouterModule, Routes } from '@angular/router'; | ||
import { FooterComponent } from '@app/shared/footer/footer.component'; | ||
import { HeaderComponent } from '@app/shared/header/header.component'; | ||
import { AccessibilityStatementComponent } from './accessibility-statement.component'; | ||
|
||
const routes: Routes = [ | ||
{ | ||
path: '', | ||
children: [ | ||
{ | ||
path: '', | ||
outlet: 'header', | ||
component: HeaderComponent, | ||
}, | ||
{ | ||
path: '', | ||
component: AccessibilityStatementComponent, | ||
}, | ||
{ | ||
path: '', | ||
outlet: 'footer', | ||
component: FooterComponent, | ||
}, | ||
], | ||
}, | ||
]; | ||
|
||
@NgModule({ | ||
imports: [RouterModule.forChild(routes)], | ||
exports: [RouterModule], | ||
}) | ||
export class AccessibilityRoutingModule {} |
26 changes: 26 additions & 0 deletions
26
client/src/app/accessibility/accessibility-statement.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-accessibility-statement', | ||
template: ` | ||
<pbds-page-title ttl="Accessibility Statement"></pbds-page-title> | ||
<div class="container mt-7"> | ||
<div class="row"> | ||
<div class="col-md-7"> | ||
<p> | ||
Pitney Bowes cares about every user’s experience. By applying accessibility standards, we are | ||
continually improving that experience for people with disabilities. | ||
</p> | ||
<p> | ||
We strive to make our products as accessible as possible for people of all levels of ability using the World | ||
Wide Web Consortium’s Web Content Accessibility Guidelines (WCAG). Our goal is to meet Level AA | ||
standards for our products. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
`, | ||
styles: [], | ||
}) | ||
export class AccessibilityStatementComponent {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
import { SharedModule } from '@app/shared/shared.module'; | ||
import { AccessibilityRoutingModule } from './accessibility-routing.module'; | ||
import { AccessibilityStatementComponent } from './accessibility-statement.component'; | ||
|
||
@NgModule({ | ||
declarations: [AccessibilityStatementComponent], | ||
imports: [CommonModule, AccessibilityRoutingModule, SharedModule], | ||
}) | ||
export class AccessibilityModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.