-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove "forgot password" button and replace with explanation
Closes #769
- Loading branch information
1 parent
4e350a8
commit 4165e40
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{% ckan_extends %} | ||
|
||
{% block help_forgotten %} | ||
<section class="module module-narrow module-shallow"> | ||
<h2 class="module-heading">{{ _('Accounts') }}</h2> | ||
<div class="module-content"> | ||
<p>{% trans %}You do not need to log in to view or download data.{% endtrans %}</p> | ||
<p>{% trans %}Accounts are used by Natural History Museum staff to create and administrate datasets. Only Natural History Museum staff can log in to the portal.{% endtrans %}</p> | ||
</div> | ||
</section> | ||
<section class="module module-narrow module-shallow"> | ||
{% block help_forgotten_inner %} | ||
<h2 class="module-heading">{{ _('Trouble logging in?') }}</h2> | ||
<div class="module-content"> | ||
<p>{% trans %}Use your regular Museum username and password.{% endtrans %}</p> | ||
<p>{% trans %}Please check that your password has not expired, and if you have recently updated your password please wait a while before trying again.{% endtrans %}</p> | ||
<p>{% trans %}If you are still having trouble, please <a href="/contact">contact us</a>.{% endtrans %}</p> | ||
</div> | ||
{% endblock %} | ||
</section> | ||
{% endblock %} |