Files
notifications-admin/app/templates/views/user-profile.html
T

20 lines
436 B
HTML
Raw Normal View History

2015-12-14 16:53:07 +00:00
{% extends "withnav_template.html" %}
2016-01-07 20:11:22 +00:00
{% from "components/page-footer.html" import page_footer %}
2015-11-30 16:13:33 +00:00
{% block page_title %}
GOV.UK Notify | User settings
{% endblock %}
2015-12-14 16:53:07 +00:00
{% block maincolumn_content %}
2015-11-30 16:13:33 +00:00
<h1 class="heading-xlarge">User profile</h1>
<p>Here's where users can update their profile, password etc.</p>
2016-01-07 20:11:22 +00:00
{{ page_footer(
back_link = url_for('.dashboard'),
back_link_text = 'Back to dashboard'
) }}
2015-11-30 16:13:33 +00:00
{% endblock %}