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 Oct 31, 2024
1 parent 037e2ec commit 74991e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<div class="ui segment padded">

{%- block form_header %}
<h1 class="ui small reset-password header">{{_('Reset password')}}</h1>
<h1 class="ui small header p-25">{{_('Reset password')}}</h1>
{%- endblock form_header %}

{%- if messages %}
Expand All @@ -39,7 +39,7 @@ <h1 class="ui small reset-password header">{{_('Reset password')}}</h1>
</div>

{%- if current_user.is_anonymous %}
<p class="ui primary segment padded text-muted">
<p class="ui primary segment padded text-muted m-10">
<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 @@ -15,7 +15,7 @@
<div class="ui padded segments big form">
<div class="ui segment">
{%- block form_header %}
<h1 class="ui small reset-password header">{{_('Reset password')}}</h1>
<h1 class="ui small header p-25">{{_('Reset password')}}</h1>
{%- endblock form_header %}

{%- if messages %}
Expand Down

0 comments on commit 74991e0

Please sign in to comment.