mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-07 15:01:55 -04:00
We have found repeatedly in research that our users don’t know what ‘beta’ means. In this situation they come up with their own interpretation of what it means, for example that: - certain features are not available to them - Notify as a whole is not available to them - they are using a ‘different’ version of Notify to those using it for real In the most severe cases this ambiguity actively dissuades users from adopting Notify. We know this from support tickets and user research; there are probably a host of other teams we haven’t spoken to. Here’s a quote from a user research session just last week: > Once we’ve got the facility to receive inbound messages […] that’s not > available to us at the moment with a beta account From support tickets: > We see that the service is still in beta mode – can we assume > uninterrupted service reliability and performance? > we do not have a .gov.uk email address any longer but I was wondering > if we would be able to utilize the notify system which is currently in > beta > We are currently using the BETA version, are we able to switch to the > TEST version so we can add other numbers to send SMS to? > I have previously enquired about this option [receiving text messages], > but thought it was still at Beta stage. If we can set it up so that > notify handles the responses that would be great. > [after going live] Should I see the wording LIVE on the login screen > as I still see BETA.,.... > Also I note that you are a BETA service just now and that to use the > service we would need a .gov.uk email address. We don't have this, is > there any way that [redacted] could use the service as I note that one > of the teams have an account? --- This commit removes the beta badge from Notify, and hopefully with it the confusion it’s causing our users.
137 lines
5.3 KiB
HTML
137 lines
5.3 KiB
HTML
{% extends "govuk_template.html" %}
|
||
{% from "components/banner.html" import banner %}
|
||
|
||
{% block head %}
|
||
<!--[if gt IE 8]><!-->
|
||
<link rel="stylesheet" media="screen" href="{{ asset_url('stylesheets/main.css') }}" />
|
||
<!--<![endif]-->
|
||
<style>
|
||
#global-header-bar { background-color: {{header_colour}} }
|
||
</style>
|
||
<!--[if IE 6]>
|
||
<link rel="stylesheet" media="screen" href="{{ asset_url('stylesheets/main-ie6.css') }}" />
|
||
<![endif]-->
|
||
<!--[if IE 7]>
|
||
<link rel="stylesheet" media="screen" href="{{ asset_url('stylesheets/main-ie7.css') }}" />
|
||
<![endif]-->
|
||
<!--[if IE 8]>
|
||
<link rel="stylesheet" media="screen" href="{{ asset_url('stylesheets/main-ie8.css') }}" />
|
||
<![endif]-->
|
||
<meta name="google-site-verification" content="niWnSqImOWz6mVQTYqNb5tFK8HaKSB4b3ED4Z9gtUQ0" />
|
||
{% block meta %}
|
||
{% endblock %}
|
||
{% endblock %}
|
||
|
||
{% block page_title %}
|
||
{% block per_page_title %}{% endblock %} – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block cookie_message %}
|
||
<p>
|
||
GOV.UK Notify uses cookies to make the site simpler.
|
||
<a href="{{ url_for("main.cookies") }}">Find out more about cookies</a>
|
||
</p>
|
||
{% endblock %}
|
||
|
||
{% block header_class %}with-proposition{% endblock %}
|
||
{% block proposition_header %}
|
||
<div class="header-proposition">
|
||
<div class="content">
|
||
<a href="#proposition-links" class="js-header-toggle menu">Menu</a>
|
||
<nav id="proposition-menu">
|
||
<ul id="proposition-links">
|
||
<li><a href="{{ url_for('main.support') }}">Support</a></li>
|
||
{% if current_user.is_authenticated %}
|
||
<li><a href="{{ url_for('main.documentation') }}">Documentation</a></li>
|
||
<li><a href="{{ url_for('main.user_profile') }}">{{ current_user.name }}</a></li>
|
||
{% if current_user.has_permissions(admin_override=True) %}
|
||
<li><a href="{{ url_for('main.platform_admin') }}">Platform admin</a></li>
|
||
{% endif %}
|
||
<li><a href="{{ url_for('main.sign_out')}}">Sign out</a></li>
|
||
{% else %}
|
||
<li><a href="{{ url_for('main.features') }}">Features</a></li>
|
||
<li><a href="{{ url_for('main.pricing' )}}">Pricing</a></li>
|
||
<li><a href="{{ url_for('main.documentation') }}">Documentation</a></li>
|
||
<li><a href="{{ url_for('main.sign_in' )}}">Sign in</a></li>
|
||
{% endif %}
|
||
</ul>
|
||
</nav>
|
||
</div>
|
||
</div>
|
||
{% endblock %}
|
||
|
||
|
||
{% set global_header_text = "GOV.UK <span id='product-name'>Notify</span>"|safe %}
|
||
|
||
{% set homepage_url = url_for('main.show_all_services_or_dashboard') %}
|
||
|
||
{% block content %}
|
||
{% block fullwidth_content %}{% endblock %}
|
||
{% endblock %}
|
||
|
||
{% block footer_top %}
|
||
<div class="footer-categories">
|
||
<div class="footer-categories-wrapper">
|
||
<div class="grid-row">
|
||
<div class="column-one-quarter">
|
||
<ul>
|
||
<li><a href="{{ url_for('main.support') }}">Support</a></li>
|
||
<li><a href="https://status.notifications.service.gov.uk">System status</a></li>
|
||
<li><a href="https://www.gov.uk/performance/govuk-notify">Performance</a></li>
|
||
<li><a href="https://ukgovernmentdigital.slack.com/messages/govuk-notify">Slack channel</a></li>
|
||
<li><a href="https://governmentasaplatform.blog.gov.uk/category/gov-uk-notify/">Blog</a></li>
|
||
</ul>
|
||
</div>
|
||
<div class="column-one-quarter">
|
||
<ul>
|
||
<li><a href="{{ url_for("main.features") }}">Features</a></li>
|
||
<li><a href="{{ url_for("main.roadmap") }}">Roadmap</a></li>
|
||
<li><a href="{{ url_for("main.security") }}">Security</a></li>
|
||
<li><a href="{{ url_for("main.terms") }}">Terms of use</a></li>
|
||
<li><a href="{{ url_for("main.using_notify") }}">Using Notify</a></li>
|
||
</ul>
|
||
</div>
|
||
<div class="column-one-quarter">
|
||
<ul>
|
||
<li><a href="{{ url_for("main.pricing") }}">Pricing</a></li>
|
||
</ul>
|
||
</div>
|
||
<div class="column-one-quarter">
|
||
<ul>
|
||
<li><a href="{{ url_for("main.documentation") }}">Documentation</a></li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
{% endblock %}
|
||
|
||
{% block footer_support_links %}
|
||
<nav class="footer-nav">
|
||
Built by the <a href="https://www.gov.uk/government/organisations/government-digital-service">Government Digital Service</a>
|
||
<a href="{{ url_for("main.cookies") }}">Cookies</a>
|
||
{% if current_service.research_mode %}
|
||
<span id="research-mode" class="research-mode">research mode</span>
|
||
{% endif %}
|
||
</nav>
|
||
{% endblock %}
|
||
|
||
{% block body_end %}
|
||
<script type="text/javascript" src="{{ asset_url('javascripts/all.js') }}"></script>
|
||
<script>
|
||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||
ga('create', 'UA-75215134-1', 'auto');
|
||
ga('set', 'anonymizeIp', true);
|
||
ga('set', 'displayFeaturesTask', null);
|
||
ga('set', 'transport', 'beacon');
|
||
// strip UUIDs
|
||
page = (window.location.pathname + window.location.search).replace(
|
||
/[a-f0-9]{8}-?[a-f0-9]{4}-?4[a-f0-9]{3}-?[89ab][a-f0-9]{3}-?[a-f0-9]{12}/g, '…'
|
||
)
|
||
ga('send', 'pageview', page);
|
||
</script>
|
||
{% endblock %}
|