reduce margin

pull/200/head
Aevann 2023-09-06 01:15:11 +03:00
parent b42b20d5bf
commit 1b736df4c1
3 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,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-5 pb-5">
<div class="text-center text-muted text-small mt-2 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

@ -108,7 +108,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-5 pb-5">
<div class="text-center text-muted text-small mt-2 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

@ -12,7 +12,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-5 pb-5">
<div class="text-center text-muted text-small mt-2 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 %}