diff --git a/app/routes.js b/app/routes.js index 8b9fc5d..c4654ff 100644 --- a/app/routes.js +++ b/app/routes.js @@ -29,4 +29,23 @@ router.post('/part-1/hospital/overnight-stays', function(request, response) { } }) +router.post('/part-1/foster-care/foster-carer', function(request, response) { + + var isFosterCarer = request.session.data['foster-carer'] + if (isFosterCarer === "yes"){ + response.redirect("/part-1/foster-care/when-child-placed") + } else { + response.redirect("/part-1/foster-care/relationship") + } +}) + +router.post('/part-1/foster-care/who-placed', function(request, response) { + + var whoPlaced = request.session.data['who-placed'] + if (whoPlaced === "parent"){ + response.redirect("/end-screen") + } else { + response.redirect("/part-1/foster-care/name-of-la") + } +}) diff --git a/app/views/end-screen.html b/app/views/end-screen.html new file mode 100644 index 0000000..4b9d7ab --- /dev/null +++ b/app/views/end-screen.html @@ -0,0 +1,43 @@ +{% extends "layouts/main.html" %} + +{% block pageTitle %} + End – {{ serviceName }} – GOV.UK Prototype Kit +{% endblock %} + +{% block beforeContent %} +
+

+ + + This is a new service – your feedback will help us to improve it. + +

+
+Back +{% endblock %} + +{% block content %} + +
+
+ +

+ Thank you - this part of the testing is done +

+ + + +
+ +
+
+ {{ govukButton({ + text: " Return to Home page", + href: "/" + }) }} + +
+ +{% endblock %} diff --git a/app/views/index.html b/app/views/index.html index b944ee5..5d6c9f3 100644 --- a/app/views/index.html +++ b/app/views/index.html @@ -30,6 +30,19 @@

+ + + Foster carers + + + + + Foster carers

+ + + Time in hospital diff --git a/app/views/foster-care/foster-carer.html b/app/views/part-1/foster-care/foster-carer.html similarity index 61% rename from app/views/foster-care/foster-carer.html rename to app/views/part-1/foster-care/foster-carer.html index 79b8072..59fd47c 100644 --- a/app/views/foster-care/foster-carer.html +++ b/app/views/part-1/foster-care/foster-carer.html @@ -1,7 +1,7 @@ {% extends "layouts/main.html" %} {% block pageTitle %} - Question page template – {{ serviceName }} – GOV.UK Prototype Kit + Foster carer – {{ serviceName }} – GOV.UK Prototype Kit {% endblock %} {% block beforeContent %} @@ -21,39 +21,36 @@ {% block content %}
-
+

Are you a foster carer for the child?

-
+
- -
- -
- -


-
- +
diff --git a/app/views/foster-care/la-address.html b/app/views/part-1/foster-care/la-address.html similarity index 89% rename from app/views/foster-care/la-address.html rename to app/views/part-1/foster-care/la-address.html index 5270c12..2de9ed9 100644 --- a/app/views/foster-care/la-address.html +++ b/app/views/part-1/foster-care/la-address.html @@ -1,7 +1,7 @@ {% extends "layouts/main.html" %} {% block pageTitle %} - Question page template – {{ serviceName }} – GOV.UK Prototype Kit + Organisation address – {{ serviceName }} – GOV.UK Prototype Kit {% endblock %} {% block beforeContent %} @@ -21,7 +21,7 @@ {% block content %}
-
+
@@ -62,12 +62,10 @@

-
- {{ govukButton({ - text: " Save and Continue" - }) }} - -
+{{ govukButton({ + text: " Save and Continue", + href: "la-telephone" +}) }}
diff --git a/app/views/foster-care/la-telephone.html b/app/views/part-1/foster-care/la-telephone.html similarity index 73% rename from app/views/foster-care/la-telephone.html rename to app/views/part-1/foster-care/la-telephone.html index 04aec46..6380b55 100644 --- a/app/views/foster-care/la-telephone.html +++ b/app/views/part-1/foster-care/la-telephone.html @@ -1,7 +1,7 @@ {% extends "layouts/main.html" %} {% block pageTitle %} - Question page template – {{ serviceName }} – GOV.UK Prototype Kit +Organisation phone – {{ serviceName }} – GOV.UK Prototype Kit {% endblock %} {% block beforeContent %} @@ -21,13 +21,12 @@ {% block content %}
-
+

- What is the telephonee number of the local authority or voluntary organisation? + What is the telephone number of the local authority or voluntary organisation?

-
@@ -38,13 +37,12 @@

- + + {{ govukButton({ + text: " Save and Continue" + }) }} - {{ govukButton({ - text: " Save and Continue" - }) }} - -
+
diff --git a/app/views/foster-care/name-of-la.html b/app/views/part-1/foster-care/name-of-la.html similarity index 80% rename from app/views/foster-care/name-of-la.html rename to app/views/part-1/foster-care/name-of-la.html index 236f378..da9a4c4 100644 --- a/app/views/foster-care/name-of-la.html +++ b/app/views/part-1/foster-care/name-of-la.html @@ -1,7 +1,7 @@ {% extends "layouts/main.html" %} {% block pageTitle %} - Question page template – {{ serviceName }} – GOV.UK Prototype Kit + Name of organisation – {{ serviceName }} – GOV.UK Prototype Kit {% endblock %} {% block beforeContent %} @@ -21,7 +21,7 @@ {% block content %}
-
+

What is the name of the local authority or voluntary organisation? @@ -33,12 +33,10 @@

-
- {{ govukButton({ - text: " Save and Continue" - }) }} - -
+{{ govukButton({ + text: " Save and Continue", + href: "la-address" +}) }}
diff --git a/app/views/foster-care/relationship.html b/app/views/part-1/foster-care/relationship.html similarity index 76% rename from app/views/foster-care/relationship.html rename to app/views/part-1/foster-care/relationship.html index 972d139..f2c1471 100644 --- a/app/views/foster-care/relationship.html +++ b/app/views/part-1/foster-care/relationship.html @@ -1,7 +1,7 @@ {% extends "layouts/main.html" %} {% block pageTitle %} - Question page template – {{ serviceName }} – GOV.UK Prototype Kit + Relationship – {{ serviceName }} – GOV.UK Prototype Kit {% endblock %} {% block beforeContent %} @@ -21,10 +21,10 @@ {% block content %}
-
+

- What is your relationship to them? + What is your relationship to the child?

@@ -33,12 +33,12 @@

-
- {{ govukButton({ - text: " Save and Continue" - }) }} + + {{ govukButton({ + text: " Save and Continue" + }) }} -
+
diff --git a/app/views/foster-care/when-child-placed.html b/app/views/part-1/foster-care/when-child-placed.html similarity index 88% rename from app/views/foster-care/when-child-placed.html rename to app/views/part-1/foster-care/when-child-placed.html index 2cdd392..399c687 100644 --- a/app/views/foster-care/when-child-placed.html +++ b/app/views/part-1/foster-care/when-child-placed.html @@ -1,7 +1,7 @@ {% extends "layouts/main.html" %} {% block pageTitle %} - Question page template – {{ serviceName }} – GOV.UK Prototype Kit + When placed – {{ serviceName }} – GOV.UK Prototype Kit {% endblock %} {% block beforeContent %} @@ -21,7 +21,7 @@ {% block content %}
-
+
@@ -31,7 +31,7 @@

- For example, 31 3 1980 + For example, 31 3 2024
@@ -61,12 +61,10 @@

-
- {{ govukButton({ - text: " Save and Continue" - }) }} - -
+{{ govukButton({ + text: " Save and Continue", + href: "who-placed" +}) }}
diff --git a/app/views/foster-care/who-placed.html b/app/views/part-1/foster-care/who-placed.html similarity index 66% rename from app/views/foster-care/who-placed.html rename to app/views/part-1/foster-care/who-placed.html index c129a31..beac8a7 100644 --- a/app/views/foster-care/who-placed.html +++ b/app/views/part-1/foster-care/who-placed.html @@ -1,7 +1,7 @@ {% extends "layouts/main.html" %} {% block pageTitle %} - Question page template – {{ serviceName }} – GOV.UK Prototype Kit +Who placed – {{ serviceName }} – GOV.UK Prototype Kit {% endblock %} {% block beforeContent %} @@ -27,31 +27,30 @@

Who placed the child into your care?

-
+
- -
- -
- +


-
-