{% extends "layout_unbranded.html" %} {% set serviceName %} {% endset %} {% block pageTitle %} {% if error == "wrong-password" %} Error: {% endif %} Sign in - GOV.UK Prototype Kit {% endblock %} {% block scripts %} {% endblock %} {% block content %}
{% if error == "wrong-password" %} {{ govukErrorSummary({ titleText: "There is a problem", errorList: [ { text: "The password is not correct", href: "#password" } ] })}} {% endif %}

This is a prototype used for research

It is not a real service. You should only continue if you have been invited to test this prototype.

{{ govukInput({ classes: "govuk-input--width-10", name: "_password", id: "password", type: "password", errorMessage: { text: "The password is not correct" } if error == "wrong-password", label:{ text: "Password" } }) }} {{ govukButton({ text: "Continue" }) }}
{% endblock %}