added in copy
This commit is contained in:
@@ -238,11 +238,9 @@ export default function Footer(props) {
|
||||
|
||||
<li className="govuk-footer__inline-list-item">
|
||||
<Link
|
||||
href={
|
||||
router.locale == "cy"
|
||||
? "/telerau-ac-amodau"
|
||||
: "/terms-and-conditions"
|
||||
}
|
||||
href={t(
|
||||
"common:footer-terms-conditions-link"
|
||||
)}
|
||||
>
|
||||
<a
|
||||
id="aTermsConds"
|
||||
|
||||
+1132
-1219
File diff suppressed because it is too large
Load Diff
@@ -49,8 +49,8 @@ export default function PrivacyEN() {
|
||||
How we process any personal information including
|
||||
special category data you have voluntarily provided to
|
||||
us relating directly to you or any other third-party
|
||||
individual's information you may have provided relating
|
||||
to PEDW casework.
|
||||
individual's information you may have provided
|
||||
relating to PEDW casework.
|
||||
</li>
|
||||
<li>
|
||||
Planning and Environment Decisions Wales handle a
|
||||
@@ -207,7 +207,7 @@ export default function PrivacyEN() {
|
||||
link:
|
||||
</p>
|
||||
<p>
|
||||
Information Commissioner's Office <br />
|
||||
Information Commissioner's Office <br />
|
||||
1 Wycliffe House
|
||||
<br />
|
||||
Water Lane, Wilmslow <br />
|
||||
@@ -757,20 +757,23 @@ export default function PrivacyEN() {
|
||||
We provide your information to the relevant Welsh
|
||||
Minister who make the final decision on the applications
|
||||
and appeals we examine via:
|
||||
<ul>
|
||||
<li>
|
||||
The Department for Business, Energy, and
|
||||
Industrial Strategy
|
||||
</li>
|
||||
<li>The Department for Transport</li>
|
||||
<li>
|
||||
The Department for Environment, Food and Rural
|
||||
Affairs and
|
||||
</li>
|
||||
<li>
|
||||
The Ministry of Housing, Communities and Local
|
||||
Government.
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
The Department for Business, Energy, and Industrial
|
||||
Strategy
|
||||
</li>
|
||||
<li>The Department for Transport</li>
|
||||
<li>
|
||||
The Department for Environment, Food and Rural Affairs
|
||||
and
|
||||
</li>
|
||||
<li>
|
||||
The Ministry of Housing, Communities and Local
|
||||
Government.
|
||||
</li>
|
||||
|
||||
<li>
|
||||
For fairness to the other parties interested in a case,
|
||||
we need to share your representations as indicated
|
||||
@@ -857,9 +860,7 @@ export default function PrivacyEN() {
|
||||
This will normally be set out in our guidance, but if you
|
||||
have specific queries or concerns in respect of a particular
|
||||
case then please contact the case officer who, if necessary,
|
||||
will discuss the matter with … - process to be established,
|
||||
can this be internal to PEDW or should it be sent up the
|
||||
line?.
|
||||
will discuss the matter with PEDW.
|
||||
</p>
|
||||
<h3>10. Do we use any data processors? </h3>
|
||||
<p>
|
||||
|
||||
+35
-12
@@ -9,6 +9,7 @@ import AwaitingSubmission from "./myportal/awaitingsubmission";
|
||||
import MyRepresentations from "./myportal/myrepresentations";
|
||||
import WatchedCases from "./myportal/watchedcases";
|
||||
import YourAccount from "./myportal/youraccount";
|
||||
import { parseCookies, setCookie, destroyCookie } from "nookies";
|
||||
|
||||
const MyPortal = (props) => {
|
||||
let { t } = useTranslation();
|
||||
@@ -18,26 +19,48 @@ const MyPortal = (props) => {
|
||||
|
||||
return (
|
||||
<main className="" id="main-content" role="main">
|
||||
<div className="servicebanner govuk-!-margin-bottom-4">
|
||||
<div className="servicebanner myportal govuk-!-margin-bottom-4">
|
||||
<h1>
|
||||
<img
|
||||
src={
|
||||
router.locale == "cy"
|
||||
? "/assets/images/my-portal-cy.svg"
|
||||
: "/assets/images/my-portal-en.svg"
|
||||
? "/assets/images/planning-casework-cy.svg"
|
||||
: "/assets/images/planning-casework-en.svg"
|
||||
}
|
||||
alt={router.locale == "cy" ? "Fy mhorth" : "My Portal"}
|
||||
/>
|
||||
<img
|
||||
className="pedw_logo"
|
||||
src="/assets/images/pedw_logo.png"
|
||||
alt={
|
||||
router.locale == "cy"
|
||||
? "Penderfyniadau Cynllunio ac Amgylchedd Cymru"
|
||||
: "Planning & Environment Decisions Wales"
|
||||
}
|
||||
/>
|
||||
</h1>
|
||||
|
||||
<div className="serviceBanner_userDetails">
|
||||
<img
|
||||
className="user_logo"
|
||||
src="/assets/images/user.svg"
|
||||
alt={router.locale == "cy" ? "Defnyddiwr" : "User"}
|
||||
/>{" "}
|
||||
<div className="serviceBanner_userDetails_name">
|
||||
{props.accountDetails.accountDetails.firstname}{" "}
|
||||
{props.accountDetails.accountDetails.lastname}
|
||||
</div>
|
||||
<div>
|
||||
<Link
|
||||
href={
|
||||
router.locale == "cy"
|
||||
? "/allgofnodi"
|
||||
: "/logout"
|
||||
}
|
||||
>
|
||||
<a
|
||||
onClick={() => {
|
||||
destroyCookie({}, "pinsUser"),
|
||||
window.localStorage.clear();
|
||||
}}
|
||||
className="govuk-header__link govuk-!-margin-right-3"
|
||||
>
|
||||
{t("common:signout-label")}
|
||||
</a>
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="govuk-grid-row">
|
||||
<div className="govuk-grid-column-full">
|
||||
|
||||
@@ -9,6 +9,7 @@ export default function ServiceBanner() {
|
||||
<div className="servicebanner">
|
||||
<h1>
|
||||
<img
|
||||
className="govuk-!-margin-top-4"
|
||||
src={
|
||||
router.locale == "cy"
|
||||
? "/assets/images/planning-casework-cy.svg"
|
||||
@@ -16,7 +17,7 @@ export default function ServiceBanner() {
|
||||
}
|
||||
alt="Planning casework"
|
||||
/>
|
||||
<img
|
||||
{/* <img
|
||||
className="pedw_logo"
|
||||
src="/assets/images/pedw_logo.png"
|
||||
alt={
|
||||
@@ -24,7 +25,7 @@ export default function ServiceBanner() {
|
||||
? "Penderfyniadau Cynllunio ac Amgylchedd Cymru"
|
||||
: "Planning & Environment Decisions Wales"
|
||||
}
|
||||
/>
|
||||
/> */}
|
||||
</h1>
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user