-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1ffe91
commit 72af0ce
Showing
20 changed files
with
331 additions
and
283 deletions.
There are no files selected for viewing
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
273 changes: 145 additions & 128 deletions
273
VideoWeb/VideoWeb/ClientApp/src/app/shared/accessibility/accessibility.component.html
Large diffs are not rendered by default.
Oops, something went wrong.
19 changes: 8 additions & 11 deletions
19
VideoWeb/VideoWeb/ClientApp/src/app/shared/beta-banner/beta-banner.component.html
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 |
---|---|---|
@@ -1,12 +1,9 @@ | ||
<div class="govuk-phase-banner" *ngIf="isRepresentativeOrIndividual"> | ||
<p class="govuk-phase-banner__content"> | ||
<strong class="govuk-tag govuk-phase-banner__content__tag"> | ||
{{'beta-banner.beta' | translate}} | ||
</strong> | ||
<span class="govuk-phase-banner__text"> | ||
{{'beta-banner.this-new-service' | translate}} | ||
<a class="govuk-link" href="{{ pageUrl }}"> {{'beta-banner.feedback' | translate}} </a> | ||
{{'beta-banner.help-improve' | translate}} | ||
</span> | ||
</p> | ||
<div class="govuk-phase-banner"> | ||
<p class="govuk-phase-banner__content"> | ||
<strong class="govuk-tag govuk-phase-banner__content__tag"> {{ 'beta-banner.beta' | translate }} </strong> | ||
<span class="govuk-phase-banner__text"> | ||
{{ 'beta-banner.this-new-service' | translate }} <a class="govuk-link" href="#">{{ 'beta-banner.feedback' | translate }}</a> | ||
{{ 'beta-banner.help-improve' | translate }} | ||
</span> | ||
</p> | ||
</div> |
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
2 changes: 1 addition & 1 deletion
2
VideoWeb/VideoWeb/ClientApp/src/app/shared/custom-validators.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
6 changes: 2 additions & 4 deletions
6
VideoWeb/VideoWeb/ClientApp/src/app/shared/equipment-problem/equipment-problem.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 |
---|---|---|
@@ -1,13 +1,11 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
import { Component } from '@angular/core'; | ||
import { vhContactDetails } from 'src/app/shared/contact-information'; | ||
|
||
@Component({ | ||
selector: 'app-equipment-problem', | ||
templateUrl: './equipment-problem.component.html', | ||
styleUrls: [] | ||
}) | ||
export class EquipmentProblemComponent implements OnInit { | ||
export class EquipmentProblemComponent { | ||
contactDetails = vhContactDetails; | ||
|
||
ngOnInit() {} | ||
} |
59 changes: 30 additions & 29 deletions
59
VideoWeb/VideoWeb/ClientApp/src/app/shared/header/header.component.html
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 |
---|---|---|
@@ -1,30 +1,31 @@ | ||
<header class="govuk-header" role="banner" data-module="header"> | ||
<div class="govuk-header__container"> | ||
<div class="govuk-width-container"> | ||
<div class="govuk-header__logo"> | ||
<span class="govuk-header__logotype-crown"> | ||
<ng-container *ngIf="hearingVenueIsScottish$ | async; then sctsCrest; else hmctsCrest"></ng-container> | ||
<ng-template #sctsCrest> | ||
<img role="presentation" | ||
id="header-logo-scot" | ||
class="govuk-header__logotype-crest" | ||
src="/assets/images/scot-crest-white.png" | ||
height="40" | ||
[attr.alt]="'participants-panel.scottish-crest' | translate"/> | ||
</ng-template> | ||
<ng-template #hmctsCrest> | ||
<app-header-logo-svg></app-header-logo-svg> | ||
</ng-template> | ||
<span class="govuk-header__service-name header-item"> {{'header.hm-courts' | translate}} & {{'header.tribunals-service' | translate}}</span> | ||
</span> | ||
</div> | ||
<nav class="govuk-header__navigation" [attr.aria-label]="'account-navigation-label' | translate"> | ||
<ul class="govuk-header__navigation-list"> | ||
<li *ngIf="loggedIn" class="govuk-header__navigation-item header-item"> | ||
<a id="logout-link" class="govuk-header__link" [routerLink]="logoutRoute">{{'header.sign-out' | translate}}</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</div> | ||
<div class="govuk-header__container"> | ||
<div class="govuk-width-container"> | ||
<div class="govuk-header__logo"> | ||
<span class="govuk-header__logotype-crown"> | ||
<ng-container *ngIf="hearingVenueIsScottish$ | async; then sctsCrest; else hmctsCrest"></ng-container> | ||
<ng-template #sctsCrest> | ||
<img | ||
id="header-logo-scot" | ||
class="govuk-header__logotype-crest" | ||
src="/assets/images/scot-crest-white.png" | ||
height="40" | ||
[attr.alt]="'participants-panel.scottish-crest' | translate" | ||
/> | ||
</ng-template> | ||
<ng-template #hmctsCrest> | ||
<app-header-logo-svg></app-header-logo-svg> | ||
</ng-template> | ||
<span class="govuk-header__service-name header-item"> | ||
{{ 'header.hm-courts' | translate }} & {{ 'header.tribunals-service' | translate }}</span | ||
> | ||
</span> | ||
</div> | ||
<nav class="govuk-header__navigation" [attr.aria-label]="'account-navigation-label' | translate"> | ||
<ul class="govuk-header__navigation-list"> | ||
<li *ngIf="loggedIn" class="govuk-header__navigation-item header-item"> | ||
<a id="logout-link" class="govuk-header__link" [routerLink]="logoutRoute">{{ 'header.sign-out' | translate }}</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</div> | ||
</header> | ||
</div> |
133 changes: 73 additions & 60 deletions
133
VideoWeb/VideoWeb/ClientApp/src/app/shared/privacy-policy/privacy-policy.component.html
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 |
---|---|---|
@@ -1,107 +1,120 @@ | ||
<div class="govuk-grid-row"> | ||
<div class="govuk-grid-column-two-thirds"><img [attr.alt]="'privacy-policy.crest-image-alt' | translate" src="/assets/images/hmcts-logo.gif" /></div> | ||
<div class="govuk-grid-column-two-thirds"> | ||
<img [attr.alt]="'privacy-policy.crest-img-alt' | translate" src="/assets/images/hmcts-logo.gif" /> | ||
</div> | ||
</div> | ||
<div class="govuk-grid-row"> | ||
<div class="govuk-grid-column-full"> | ||
<h2 class="govuk-heading-l">{{'privacy-policy.heading' | translate}}</h2> | ||
<h2 class="govuk-heading-l">{{ 'privacy-policy.heading' | translate }}</h2> | ||
|
||
<button class="govuk-button govuk-!-display-none-print" (click)="printPage()" type="button">{{'privacy-policy.print-button' | translate}}</button> | ||
<button class="govuk-button govuk-!-display-none-print" (click)="printPage()" type="button"> | ||
{{ 'privacy-policy.print-button' | translate }} | ||
</button> | ||
|
||
<p class="govuk-body">{{'privacy-policy.paragraph1' | translate}}</p> | ||
<p class="govuk-body">{{'privacy-policy.paragraph2' | translate}}</p> | ||
<p class="govuk-body">{{ 'privacy-policy.paragraph1' | translate }}</p> | ||
<p class="govuk-body">{{ 'privacy-policy.paragraph2' | translate }}</p> | ||
|
||
<h3 class="govuk-heading-m">{{'privacy-policy.why-we-collect.heading' | translate}}</h3> | ||
<p class="govuk-body">{{'privacy-policy.why-we-collect.paragraph' | translate}} | ||
</p> | ||
<h3 class="govuk-heading-m">{{ 'privacy-policy.why-we-collect.heading' | translate }}</h3> | ||
<p class="govuk-body">{{ 'privacy-policy.why-we-collect.paragraph' | translate }}</p> | ||
|
||
<h3 class="govuk-heading-m">{{'privacy-policy.what-we-do.heading' | translate}}</h3> | ||
<p class="govuk-body">{{'privacy-policy.what-we-do.paragraph1' | translate}}</p> | ||
<p class="govuk-body">{{'privacy-policy.what-we-do.paragraph2' | translate}}</p> | ||
<h3 class="govuk-heading-m">{{ 'privacy-policy.what-we-do.heading' | translate }}</h3> | ||
<p class="govuk-body">{{ 'privacy-policy.what-we-do.paragraph1' | translate }}</p> | ||
<p class="govuk-body">{{ 'privacy-policy.what-we-do.paragraph2' | translate }}</p> | ||
|
||
<h3 class="govuk-heading-m">{{'privacy-policy.what-we-collect.heading' | translate}}</h3> | ||
<p class="govuk-body">{{'privacy-policy.what-we-collect.paragraph' | translate}}</p> | ||
<h3 class="govuk-heading-m">{{ 'privacy-policy.what-we-collect.heading' | translate }}</h3> | ||
<p class="govuk-body">{{ 'privacy-policy.what-we-collect.paragraph' | translate }}</p> | ||
<ul class="govuk-list govuk-list--bullet"> | ||
<li>{{'privacy-policy.what-we-collect.list.1' | translate}}</li> | ||
<li>{{'privacy-policy.what-we-collect.list.2' | translate}}</li> | ||
<li>{{'privacy-policy.what-we-collect.list.3' | translate}}</li> | ||
<li>{{'privacy-policy.what-we-collect.list.4' | translate}}</li> | ||
<li>{{'privacy-policy.what-we-collect.list.5' | translate}}</li> | ||
<li>{{'privacy-policy.what-we-collect.list.6' | translate}}</li> | ||
<li>{{'privacy-policy.what-we-collect.list.7' | translate}}</li> | ||
<li>{{ 'privacy-policy.what-we-collect.list.1' | translate }}</li> | ||
<li>{{ 'privacy-policy.what-we-collect.list.2' | translate }}</li> | ||
<li>{{ 'privacy-policy.what-we-collect.list.3' | translate }}</li> | ||
<li>{{ 'privacy-policy.what-we-collect.list.4' | translate }}</li> | ||
<li>{{ 'privacy-policy.what-we-collect.list.5' | translate }}</li> | ||
<li>{{ 'privacy-policy.what-we-collect.list.6' | translate }}</li> | ||
<li>{{ 'privacy-policy.what-we-collect.list.7' | translate }}</li> | ||
<li> | ||
{{'privacy-policy.what-we-collect.list.8' | translate}} <a href="http://www.aboutcookies.org.uk/managing-cookies" rel="noopener noreferrer" target="_blank">{{'privacy-policy.what-we-collect.list.8-cookies' | translate}}</a>. | ||
{{ 'privacy-policy.what-we-collect.list.8' | translate }} | ||
<a href="http://www.aboutcookies.org.uk/managing-cookies" rel="noopener noreferrer" target="_blank">{{ | ||
'privacy-policy.what-we-collect.list.8-cookies' | translate | ||
}}</a | ||
>. | ||
</li> | ||
</ul> | ||
|
||
<h3 class="govuk-heading-m">{{'privacy-policy.how-long.heading' | translate}}</h3> | ||
<p class="govuk-body">{{'privacy-policy.how-long.paragraph' | translate}}</p> | ||
<h3 class="govuk-heading-m">{{ 'privacy-policy.how-long.heading' | translate }}</h3> | ||
<p class="govuk-body">{{ 'privacy-policy.how-long.paragraph' | translate }}</p> | ||
|
||
<h3 class="govuk-heading-m">{{'privacy-policy.shoring-and-sharing.heading' | translate}}</h3> | ||
<p class="govuk-body">{{'privacy-policy.shoring-and-sharing.paragraph' | translate}} </p> | ||
<h3 class="govuk-heading-m">{{ 'privacy-policy.shoring-and-sharing.heading' | translate }}</h3> | ||
<p class="govuk-body">{{ 'privacy-policy.shoring-and-sharing.paragraph' | translate }}</p> | ||
|
||
<h3 class="govuk-heading-m">{{'privacy-policy.your-rights.heading' | translate}}</h3> | ||
<p class="govuk-body">{{'privacy-policy.your-rights.paragraph1' | translate}}</p> | ||
<h3 class="govuk-heading-m">{{ 'privacy-policy.your-rights.heading' | translate }}</h3> | ||
<p class="govuk-body">{{ 'privacy-policy.your-rights.paragraph1' | translate }}</p> | ||
<ul class="govuk-list govuk-list--bullet"> | ||
<li>{{'privacy-policy.your-rights.list-ask.1' | translate}}</li> | ||
<li>{{'privacy-policy.your-rights.list-ask.2' | translate}}</li> | ||
<li>{{'privacy-policy.your-rights.list-ask.3' | translate}}</li> | ||
<li>{{'privacy-policy.your-rights.list-ask.4' | translate}}</li> | ||
<li>{{ 'privacy-policy.your-rights.list-ask.1' | translate }}</li> | ||
<li>{{ 'privacy-policy.your-rights.list-ask.2' | translate }}</li> | ||
<li>{{ 'privacy-policy.your-rights.list-ask.3' | translate }}</li> | ||
<li>{{ 'privacy-policy.your-rights.list-ask.4' | translate }}</li> | ||
</ul> | ||
<p class="govuk-body">{{'privacy-policy.your-rights.paragraph2' | translate}}</p> | ||
<p class="govuk-body">{{ 'privacy-policy.your-rights.paragraph2' | translate }}</p> | ||
<ul class="govuk-list govuk-list--bullet"> | ||
<li> | ||
{{'privacy-policy.your-rights.list-see.1-1' | translate}} | ||
{{ 'privacy-policy.your-rights.list-see.1-1' | translate }} | ||
<a target="_blank" href="https://www.gov.uk/government/publications/request-your-personal-data-from-moj" rel="noopener noreferrer"> | ||
{{'privacy-policy.your-rights.list-see.1-link' | translate}}</a> | ||
{{'privacy-policy.your-rights.list-see.1-2' | translate}} | ||
{{ 'privacy-policy.your-rights.list-see.1-link' | translate }}</a | ||
> | ||
{{ 'privacy-policy.your-rights.list-see.1-2' | translate }} | ||
</li> | ||
<li>{{'privacy-policy.your-rights.list-see.2' | translate}}</li> | ||
<li>{{ 'privacy-policy.your-rights.list-see.2' | translate }}</li> | ||
</ul> | ||
<p class="govuk-body">{{'privacy-policy.your-rights.paragraph3' | translate}}</p> | ||
<p class="govuk-body">{{ 'privacy-policy.your-rights.paragraph3' | translate }}</p> | ||
<ul class="govuk-list govuk-list--bullet"> | ||
<li>{{'privacy-policy.your-rights.list-more.1' | translate}}</li> | ||
<li>{{'privacy-policy.your-rights.list-more.2' | translate}}</li> | ||
<li>{{'privacy-policy.your-rights.list-more.3' | translate}}</li> | ||
<li>{{'privacy-policy.your-rights.list-more.4' | translate}}</li> | ||
<li>{{ 'privacy-policy.your-rights.list-more.1' | translate }}</li> | ||
<li>{{ 'privacy-policy.your-rights.list-more.2' | translate }}</li> | ||
<li>{{ 'privacy-policy.your-rights.list-more.3' | translate }}</li> | ||
<li>{{ 'privacy-policy.your-rights.list-more.4' | translate }}</li> | ||
</ul> | ||
<p class="govuk-body">{{'privacy-policy.your-rights.paragraph4' | translate}}</p> | ||
<p class="govuk-body">{{ 'privacy-policy.your-rights.paragraph4' | translate }}</p> | ||
<ul class="govuk-list govuk-list--bullet"> | ||
<li>{{'privacy-policy.your-rights.list-contact.1' | translate}}</li> | ||
<li>{{ 'privacy-policy.your-rights.list-contact.1' | translate }}</li> | ||
<li> | ||
{{'privacy-policy.your-rights.list-contact.2' | translate}} | ||
{{ 'privacy-policy.your-rights.list-contact.2' | translate }} | ||
<a href="mailto:[email protected]">data.compliance@justice.gov.uk</a> | ||
</li> | ||
</ul> | ||
<h3 class="govuk-heading-m">{{'privacy-policy.how-to-complain.heading' | translate}}</h3> | ||
<h3 class="govuk-heading-m">{{ 'privacy-policy.how-to-complain.heading' | translate }}</h3> | ||
<p class="govuk-body"> | ||
{{'privacy-policy.how-to-complain.paragraph1-1' | translate}} | ||
{{ 'privacy-policy.how-to-complain.paragraph1-1' | translate }} | ||
<a href="https://www.gov.uk/government/organisations/hm-courts-and-tribunals-service/about/complaints-procedure"> | ||
{{'privacy-policy.how-to-complain.paragraph1-link' | translate}} | ||
{{ 'privacy-policy.how-to-complain.paragraph1-link' | translate }} | ||
</a> | ||
{{'privacy-policy.how-to-complain.paragraph1-2' | translate}} | ||
{{ 'privacy-policy.how-to-complain.paragraph1-2' | translate }} | ||
</p> | ||
<p class="govuk-body"> | ||
{{'privacy-policy.how-to-complain.paragraph2-1' | translate}}<br /> | ||
{{'privacy-policy.how-to-complain.paragraph2-2' | translate}} | ||
{{ 'privacy-policy.how-to-complain.paragraph2-1' | translate }}<br /> | ||
{{ 'privacy-policy.how-to-complain.paragraph2-2' | translate }} | ||
<a href="mailto:[email protected]">data.compliance@justice.gov.uk</a> | ||
</p> | ||
<p class="govuk-body"> | ||
{{'privacy-policy.how-to-complain.paragraph3-1' | translate}} | ||
<a href="https://ico.org.uk/global/contact-us">{{'privacy-policy.how-to-complain.paragraph3-link' | translate}}</a> | ||
{{'privacy-policy.how-to-complain.paragraph3-2' | translate}} | ||
{{ 'privacy-policy.how-to-complain.paragraph3-1' | translate }} | ||
<a href="https://ico.org.uk/global/contact-us">{{ 'privacy-policy.how-to-complain.paragraph3-link' | translate }}</a> | ||
{{ 'privacy-policy.how-to-complain.paragraph3-2' | translate }} | ||
</p> | ||
<h3 class="govuk-heading-m">{{'privacy-policy.hearings-recorded.heading' | translate}}</h3> | ||
<p class="govuk-body">{{'privacy-policy.hearings-recorded.paragraph1' | translate}}</p> | ||
<h3 class="govuk-heading-m">{{ 'privacy-policy.hearings-recorded.heading' | translate }}</h3> | ||
<p class="govuk-body">{{ 'privacy-policy.hearings-recorded.paragraph1' | translate }}</p> | ||
<ul class="govuk-list govuk-list--bullet"> | ||
<li>{{'privacy-policy.hearings-recorded.list.1' | translate}}</li> | ||
<li>{{ 'privacy-policy.hearings-recorded.list.1' | translate }}</li> | ||
<li> | ||
{{'privacy-policy.hearings-recorded.list.2-1' | translate}}<a href="https://www.gov.uk/find-court-tribunal">{{'privacy-policy.hearings-recorded.list.2-link' | translate}}</a> {{'privacy-policy.hearings-recorded.list.2-2' | translate}} | ||
{{ 'privacy-policy.hearings-recorded.list.2-1' | translate | ||
}}<a href="https://www.gov.uk/find-court-tribunal">{{ 'privacy-policy.hearings-recorded.list.2-link' | translate }}</a> | ||
{{ 'privacy-policy.hearings-recorded.list.2-2' | translate }} | ||
</li> | ||
<li>{{'privacy-policy.hearings-recorded.list.3' | translate}}</li> | ||
<li>{{ 'privacy-policy.hearings-recorded.list.3' | translate }}</li> | ||
</ul> | ||
<p class="govuk-body"> | ||
{{'privacy-policy.hearings-recorded.paragraph2-1' | translate}}<a href="https://www.gov.uk/apply-transcript-court-tribunal-hearing">{{'privacy-policy.hearings-recorded.paragraph2-link' | translate}}</a> | ||
{{ 'privacy-policy.hearings-recorded.paragraph2-1' | translate | ||
}}<a href="https://www.gov.uk/apply-transcript-court-tribunal-hearing">{{ | ||
'privacy-policy.hearings-recorded.paragraph2-link' | translate | ||
}}</a> | ||
</p> | ||
<p class="govuk-body">{{'privacy-policy.hearings-recorded.paragraph3' | translate}}</p> | ||
<p class="govuk-body">{{ 'privacy-policy.hearings-recorded.paragraph3' | translate }}</p> | ||
</div> | ||
</div> |
1 change: 1 addition & 0 deletions
1
VideoWeb/VideoWeb/ClientApp/src/app/vh-officer/admin-im-list/admin-im-list.component.html
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.