Skip to content

Commit

Permalink
UI: fix spacing on password reset form
Browse files Browse the repository at this point in the history
  • Loading branch information
carlinmack authored and slint committed Nov 4, 2024
1 parent 767e8ac commit 91fc2ea
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
Changes
=======

Version v5.1.4 (released 2024-11-04)

- UI: fix spacing on password reset form

Version v5.1.3 (released 2024-10-31)

- UI: fix spacing on password reset form
Expand Down
2 changes: 1 addition & 1 deletion invenio_accounts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
from .ext import InvenioAccounts, InvenioAccountsREST, InvenioAccountsUI
from .proxies import current_accounts

__version__ = "5.1.3"
__version__ = "5.1.4"

__all__ = (
"__version__",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h1 class="ui small header p-25">{{_('Reset password')}}</h1>
</div>

{%- if current_user.is_anonymous %}
<p class="ui primary segment padded text-muted m-10">
<p class="ui primary segment padded text-muted">
<a href="{{url_for('security.login')}}">{{_('Log in')}}</a>
{% if security.registerable %}
{{_('or')}} <a href="{{url_for('security.register')}}">{{_('Sign up')}}</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ <h1 class="ui small header p-25">{{_('Reset password')}}</h1>

{%- if current_user.is_anonymous %}
<div class="ui secondary segment">
<p class="ui small header"><a href="{{url_for('security.login')}}">{{_('Log in')}}</a>
<p class="ui small header m-10"><a href="{{url_for('security.login')}}">{{_('Log in')}}</a>
{% if security.registerable %}
{{_('or')}} <a href="{{url_for('security.register')}}">{{_('Sign up')}}</a>
{% endif %}
Expand Down

0 comments on commit 91fc2ea

Please sign in to comment.