add bottom margin and padding to login and signup pages

pull/138/head
Aevann 2023-03-06 19:37:30 +02:00
parent 3401ca0a68
commit 4b4c85d789
3 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@
type="password" name="password" required>
<small class="d-block my-3"><a href="/forgot">Forgot password?</a></small>
<button type="submit" class="btn btn-primary login w-100 mt-3" id="login_button">Sign In</button>
<div class="text-center text-muted text-small mt-5 mb-3">
<div class="text-center text-muted text-small mt-5 mb-5 pb-5">
Don't have an account? <a href="/signup{{'?redirect='+redirect if redirect else ''}}" class="font-weight-bold toggle-login">Sign up</a>
</div>
</form>

View File

@ -99,7 +99,7 @@
<button type="submit" class="btn btn-primary login w-100 mt-3" id="register_button">Register</button>
<div class="text-center text-muted text-small mt-5 mb-3">
<div class="text-center text-muted text-small mt-5 mb-5 pb-5">
Already have an account? <a href="/login{{'?redirect='+redirect if redirect else ''}}" class="font-weight-bold toggle-login">Log in</a>
</div>
</form>

View File

@ -13,7 +13,7 @@
<label>Referral code</label>
{% set link = SITE_FULL ~ "/signup?ref=" ~ request.values.get('ref') %}
<input autocomplete="off" type="text" class="form-control copy-link" readonly value="{{link}}" data-clipboard-text="{{link}}">
<div class="text-center text-muted text-small mt-5 mb-3">
<div class="text-center text-muted text-small mt-5 mb-5 pb-5">
Already have an account? <a href="/login{{'?redirect='+redirect if redirect else ''}}" class="font-weight-bold toggle-login">Log in</a>
</div>
{% endblock %}