-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7376ea5
commit 9f0d986
Showing
7 changed files
with
84 additions
and
28 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,81 @@ | ||
{% extends "_base.html" %} | ||
{% load allauth i18n %} | ||
{% block head_title %} | ||
{% trans "Sign Out" %} | ||
{% trans "Sign Out" %} | ||
{% endblock head_title %} | ||
{% block content %} | ||
{% element h1 %} | ||
{% trans "Sign Out" %} | ||
{% endelement %} | ||
{% element p %} | ||
{% trans 'Are you sure you want to sign out?' %} | ||
{% endelement %} | ||
{% url 'account_logout' as action_url %} | ||
{% element form method="post" action=action_url no_visible_fields=True %} | ||
{% slot body %} | ||
{% csrf_token %} | ||
{{ redirect_field }} | ||
{% endslot %} | ||
{% slot actions %} | ||
{% element button type="submit" %} | ||
{% trans 'Sign Out' %} | ||
{% endelement %} | ||
{% endslot %} | ||
{% endelement %} | ||
{% endblock content %} | ||
<div class="wrapper"> | ||
|
||
|
||
<!-- Breadcrumb area Start --> | ||
<div class="breadcrumb-area bg-color ptb--10" data-bg-color="#f6f6f6"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-12"> | ||
<div class="d-flex justify-content-between align-items-center flex-sm-row flex-column"> | ||
<h1 class="page-title">Login</h1> | ||
<div class="d-flex justify-content-between align-items-center flex-sm-row flex-column p-4"> | ||
<h1 class="page-title"></h1> | ||
<a href="/accounts/signup/" class="btn btn-info">Signup</a> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- Breadcrumb area End --> | ||
<br> | ||
|
||
<!-- Main Content Wrapper Start --> | ||
<div class="main-content-wrapper"> | ||
<div class="page-content-inner pt--75 pb--80"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-6 mb-sm--50"> | ||
<div class="login-box"> | ||
<form action="" method="POST" align="center"> | ||
{% element h1 %} | ||
{% trans "Sign Out" %} | ||
{% endelement %} | ||
{% element p %} | ||
{% trans 'Are you sure you want to sign out?' %} | ||
{% endelement %} | ||
{% url 'account_logout' as action_url %} | ||
{% element form method="post" action=action_url no_visible_fields=True %} | ||
{% slot body %} | ||
{% csrf_token %} | ||
{{ redirect_field }} | ||
{% endslot %} | ||
{% slot actions %} | ||
{% element button type="submit"%} | ||
<input type="submit" value="{% trans 'Sign Out' %}" class="btn-submit"> | ||
{% endelement %} | ||
{% endslot %} | ||
{% endelement %} | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- Main Content Wrapper Start --> | ||
|
||
<spacer size="52"></spacer> | ||
</div> | ||
<!-- Search form Popup Start --> | ||
<div class="searchform__popup" id="searchForm"> | ||
<a href="#" class="btn-close"><i class="flaticon flaticon-cross"></i></a> | ||
<div class="searchform__body"> | ||
<p>Start typing and press Enter to search</p> | ||
<form class="searchform"> | ||
<input type="text" name="popup-search" id="popup-search" class="searchform__input" | ||
placeholder="Search Entire Store..."> | ||
<button type="submit" class="searchform__submit"><i | ||
class="flaticon flaticon-magnifying-glass-icon"></i></button> | ||
</form> | ||
</div> | ||
</div> | ||
<!-- Search form Popup End --> | ||
{% endblock content %} |