4.49.7
Some checks failed
Build-Release-Image / Build-Image (linux/arm64) (push) Successful in 3m21s
Build-Release-Image / Build-Image (linux/amd64) (push) Has been cancelled
Build-Release-Image / Merge-Images (push) Has been cancelled
Build-Release-Image / Create-Release (push) Has been cancelled
Build-Release-Image / Notify (push) Has been cancelled
Some checks failed
Build-Release-Image / Build-Image (linux/arm64) (push) Successful in 3m21s
Build-Release-Image / Build-Image (linux/amd64) (push) Has been cancelled
Build-Release-Image / Merge-Images (push) Has been cancelled
Build-Release-Image / Create-Release (push) Has been cancelled
Build-Release-Image / Notify (push) Has been cancelled
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
|
||||
<div class="text-center text-muted small mt-4">
|
||||
Ask for another activation email?
|
||||
<a href="{{ url_for('auth.resend_activation') }}" style="color: #4d21ff">Resend</a>
|
||||
<a href="{{ url_for("auth.resend_activation") }}" style="color: #4d21ff">Resend</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
@ -13,7 +13,7 @@
|
||||
</div>
|
||||
<div class="text-center">
|
||||
Please go to
|
||||
<a href="{{ url_for('dashboard.setting') }}">settings</a>
|
||||
<a href="{{ url_for("dashboard.setting") }}">settings</a>
|
||||
page to re-send the confirmation email.
|
||||
</div>
|
||||
</div>
|
||||
|
@ -33,7 +33,7 @@
|
||||
<div class="text-muted mt-5" style="margin-top: 1em;">
|
||||
Don't have your key with you?
|
||||
<br />
|
||||
<a href="{{ url_for('auth.mfa') }}">Verify by One-Time Password</a>
|
||||
<a href="{{ url_for("auth.mfa") }}">Verify by One-Time Password</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
<hr />
|
||||
|
@ -20,7 +20,7 @@
|
||||
</form>
|
||||
<div class="text-center text-muted">
|
||||
Forget it,
|
||||
<a href="{{ url_for('auth.login') }}">send me back</a>
|
||||
<a href="{{ url_for("auth.login") }}">send me back</a>
|
||||
to the sign in screen.
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
<div class="text-center text-muted small mb-4">
|
||||
You haven't received the activation email?
|
||||
<a href="{{ url_for('auth.resend_activation') }}">Resend</a>
|
||||
<a href="{{ url_for("auth.resend_activation") }}">Resend</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="card" style="border-radius: 2%">
|
||||
@ -25,7 +25,7 @@
|
||||
{{ form.password(class="form-control", type="password") }}
|
||||
{{ render_field_errors(form.password) }}
|
||||
<div class="text-muted">
|
||||
<a href="{{ url_for('auth.forgot_password') }}" class="small">I forgot my password</a>
|
||||
<a href="{{ url_for("auth.forgot_password") }}" class="small">I forgot my password</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-footer">
|
||||
@ -57,6 +57,6 @@
|
||||
</div>
|
||||
<div class="text-center text-muted mt-2">
|
||||
Don't have an account yet?
|
||||
<a href="{{ url_for('auth.register') }}">Sign up</a>
|
||||
<a href="{{ url_for("auth.register") }}">Sign up</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
@ -30,7 +30,7 @@
|
||||
<div class="text-muted mt-5" style="margin-top: 1em;">
|
||||
Having trouble with your authenticator?
|
||||
<br />
|
||||
<a href="{{ url_for('auth.fido') }}">
|
||||
<a href="{{ url_for("auth.fido") }}">
|
||||
Verify by your security
|
||||
key
|
||||
</a>
|
||||
|
@ -27,7 +27,7 @@
|
||||
<!-- TODO: add terms
|
||||
<div class="form-group">
|
||||
<label class="custom-control custom-checkbox">
|
||||
<input type="checkbox" class="custom-control-input"/>
|
||||
<input type="checkbox" class="custom-control-input" />
|
||||
<span class="custom-control-label">Agree the <a href="terms.html">terms and policy</a></span>
|
||||
</label>
|
||||
</div>
|
||||
@ -69,6 +69,6 @@
|
||||
</form>
|
||||
<div class="text-center text-muted mb-6">
|
||||
Already have account?
|
||||
<a href="{{ url_for('auth.login') }}">Sign in</a>
|
||||
<a href="{{ url_for("auth.login") }}">Sign in</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
@ -19,6 +19,6 @@
|
||||
</form>
|
||||
<div class="text-center text-muted">
|
||||
Don't have account yet?
|
||||
<a href="{{ url_for('auth.register') }}">Sign up</a>
|
||||
<a href="{{ url_for("auth.register") }}">Sign up</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
@ -29,7 +29,9 @@
|
||||
{% endif %}
|
||||
</div>
|
||||
<div class="text-center p-3"
|
||||
style="font-size: 12px; font-weight: 300; margin: auto">
|
||||
style="font-size: 12px;
|
||||
font-weight: 300;
|
||||
margin: auto">
|
||||
<span class="badge badge-warning">Warning</span>
|
||||
Please note that social login is now <b>deprecated</b>.
|
||||
<br />
|
||||
@ -39,8 +41,8 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-center text-muted mt-2">
|
||||
<a href="{{ url_for('auth.register') }}">Sign up</a>
|
||||
<a href="{{ url_for("auth.register") }}">Sign up</a>
|
||||
/
|
||||
<a href="{{ url_for('auth.login') }}">Login</a>
|
||||
<a href="{{ url_for("auth.login") }}">Login</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
Reference in New Issue
Block a user