diff --git a/app/routes/home.js b/app/routes/home.js index 76ed984..da8f9df 100644 --- a/app/routes/home.js +++ b/app/routes/home.js @@ -1,6 +1,11 @@ module.exports = router => { // Dashboard + + router.get('/home/no-records', (req, res) => { + res.render('home/no-records') + }) + router.get('/home', (req, res) => { const dateToday = new Date() diff --git a/app/views/home/no-records.html b/app/views/home/no-records.html new file mode 100644 index 0000000..8101114 --- /dev/null +++ b/app/views/home/no-records.html @@ -0,0 +1,78 @@ +{% extends 'layout.html' %} + +{% block pageTitle %} + {{ currentOrganisation.name }} – Home +{% endblock %} + +{% set currentSection = "home" %} + + + + +{% block content %} + + +
+
+

{{ currentOrganisation.name }}

+ +

You have not yet recorded a vaccination.

+ +

Add vaccines

+ +

Add users

+ +

Find a patient

+ +

Find help and guidance at guide.ravs.england.nhs.uk

+ + + +

Total vaccinations

+ +
+
+ + + + + + + +{% endblock %}