Add Proton logo to sign up page (#1104)

This commit is contained in:
Carlos Quintana 2022-06-20 09:13:19 +02:00 committed by GitHub
parent 1798d411a4
commit fb1e14e509
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -51,7 +51,11 @@
{% if connect_with_proton %}
<div class="text-center my-2 text-gray"><span>or</span></div>
<a class="btn btn-primary btn-block mt-2 proton-button" href="{{ url_for("auth.proton_login") }}">Sign up with Proton</a>
<a class="btn btn-primary btn-block mt-2 proton-button"
href="{{ url_for("auth.proton_login", next=next_url) }}">
<img class="mr-2" src="/static/images/proton.svg">
Sign up with Proton
</a>
{% endif %}
</div>
</form>