mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-11 05:43:44 -05:00
One of the big things we found in user research was that people were uncertain what the effect of giving someone basic view was. So in the spirit of ‘show don’t tell’, this commit adds a way for users to preview basic view. They can go into the preview and click around as much as they like, just as if they really had the basic view assigned to them. Once they have seen enough they can return to the settings page where they can decide whether or not to switch basic view on for real.
15 lines
364 B
HTML
15 lines
364 B
HTML
{% extends "withoutnav_template.html" %}
|
|
{% block per_page_title %}403{% endblock %}
|
|
{% block maincolumn_content %}
|
|
<div class="grid-row">
|
|
<div class="column-two-thirds">
|
|
<h1 class="heading-large">
|
|
403
|
|
</h1>
|
|
<p>
|
|
You do not have permission to view this page.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|