Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 4 additions & 9 deletions src/website/shared/templates/account/logout.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@
{% block auth %}{% endblock %}

{% block content %}
<h1 class="title">Sign Out</h1>
<hr />
<h1>Sign out</h1>

<div class="has-text-centered">
<b>Are you sure you want to sign out ?</b>
</div>
<p>Are you sure you want to sign out?</p>

<form class="pt-5" method="post">
<form method="post">
{% csrf_token %}
<div class="has-text-centered">
<button class="button is-link" type="submit">Sign Out</button>
</div>
<button type="submit">Sign out</button>
</form>
{% endblock content %}
24 changes: 5 additions & 19 deletions src/website/shared/templates/socialaccount/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,12 @@
{% block auth %}{% endblock %}

{% block content %}
{% if process == "connect" %}
<h1 class="title">Connect {{ provider.name }}</h1>
<hr>
<h1>Sign in with {{ provider.name }}</h1>
<p>You are about to sign in using a third-party account from {{ provider.name }}.</p>

<div class="has-text-centered">
<b>You are about to connect a new third-party account from {{ provider.name }}.</b>
</div>
{% else %}
<h1 class="title">Sign In Via {{ provider.name }}</h1>
<hr />

<div class="has-text-centered">
<b>You are about to sign in using a third-party account from {{ provider.name }}.</b>
</div>
{% endif %}

<form class="pt-5" method="post">
<form method="post">
{% csrf_token %}
<div class="has-text-centered">
<button class="button is-link" type="submit">Continue</button>
</div>
<button type="submit">Continue</button>
</form>

{% endblock content %}