Setup
-
Prototyping
Build prototypes quickly to show people and test with users.
Before you start
To make prototypes you will need to install the NHS.UK prototype kit which has been built to work with the service manual.
How to guides
The how to guides will show you how to use the prototype kit, from creating pages to building complex user journeys. Including guidance on passing data page to page, branching, setting up Git and publishing a prototype to the web.
Styling page elements
The service manual provides lots of new CSS classes for styling page elements, so you should not need to write as much of your own Sass or CSS.
Explore the Styles section of the service manual to see what classes are available and how to apply them.
Using components
Components are reusable parts of the user interface, like buttons, text inputs and checkboxes. The components in the service manual are designed to be accessible and responsive.
There are 2 ways to use components in the service manual. You can either use HTML or a Nunjucks macro.
You can copy the code from the HTML or Nunjucks tabs below the examples on our component pages, like this example of a button.
<button class="nhsuk-button" data-module="nhsuk-button" type="submit">
Save and continue
</button>
Nunjucks macro options
Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.
Some options are required for the macro to work; these are marked as "Required" in the option description.
If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.
Name | Type | Required | Description |
---|---|---|---|
element | string | false |
"input" , "button" or "a" . In most cases you will not need to set this as it will be configured automatically if href is provided. |
HTML element for the button component –
text | string | true |
html is set, this is not required. Text for the button or link. If html is provided, the text argument will be ignored and element will be automatically set to "button" unless href is also set, or it has already been defined. This argument has no effect if element is set to "input" . |
If
html | string | true |
text is set, this is not required. HTML for the button or link. If html is provided, the text argument will be ignored and element will be automatically set to "button" unless href is also set, or it has already been defined. This argument has no effect if element is set to "input" . |
If
name | string | false |
input or button . This has no effect on a elements. |
Name for the
type | string | false |
input or button – "button" , "submit" or "reset" . Defaults to "submit" . This has no effect on a elements. |
Type of
value | string | false |
button tag. This has no effect on a or input elements. |
Value for the
disabled | boolean | false |
disabled and aria-disabled attributes will be set automatically. |
Whether the button should be disabled. For button and input elements,
href | string | false |
element will be automatically set to "a" if it has not already been defined. |
The URL that the button should link to. If this is set,
classes | string | false | Classes to add to the button component. |
attributes | object | false | HTML attributes (for example data attributes) to add to the button component. |
preventDoubleClick | boolean | false | Prevent accidental double clicks on submit buttons from submitting forms multiple times. |
{% from 'button/macro.njk' import button %}
{{ button({
text: "Save and continue"
}) }}
Using Nunjucks macros
A Nunjucks macro is a simple template that generates more complex HTML. However, macros are more sensitive to mistakes than HTML, so it’s worth saving and previewing.
When using Nunjucks macros in the prototype kit leave out the first line that starts with {% from ...
.
Updated: August 2020