Skip to content

Commit

Permalink
correct names, button
Browse files Browse the repository at this point in the history
  • Loading branch information
dmptrluke committed Dec 11, 2023
1 parent 9d790ac commit cbe456c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions apps/accounts/templates/socialaccount/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@

{% block content %}
{% if process == "connect" %}
<h1>Connect {{ provider }}</h1>
<h1>Connect {{ provider.name }}</h1>

<p></p>You are about to connect a new third party account from {{ provider }}.</p>
<p></p>You are about to connect a new third party account from {{ provider.name }}.</p>
{% else %}
<h1>Sign In Via {{ provider }}</h1>
<h1>Sign In Via {{ provider.name }}</h1>

<p>You are about to sign in using a third party account from {{ provider }}.</p>
<p>You are about to sign in using a third party account from {{ provider.name }}.</p>
{% endif %}

<form method="post">
{% csrf_token %}
<button type="submit">Continue</button>
<input class="btn btn-primary" type="submit" value="Continue">
</form>
{% endblock content %}

0 comments on commit cbe456c

Please sign in to comment.