1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-10-31 19:44:16 +00:00
webvirtcloud/accounts/templates/logout.html

17 lines
455 B
HTML
Raw Normal View History

2015-04-02 13:20:46 +00:00
{% extends "base_auth.html" %}
2015-03-02 15:31:25 +00:00
{% load i18n %}
2020-05-19 16:53:54 +00:00
{% block title %}
{% trans "WebVirtCloud" %} - {% trans "Sign Out"%}
{% endblock %}
2015-03-02 15:31:25 +00:00
{% block content %}
2020-05-19 16:53:54 +00:00
<div>
2015-03-24 14:16:46 +00:00
<div class="page-header">
<a href="/"><h1>WebVirtCloud</h1></a>
</div>
2020-05-19 16:53:54 +00:00
<div class="col-12" role="main">
2015-03-02 15:31:25 +00:00
<div class="logout">
2020-05-19 16:53:54 +00:00
<h2>{% trans "Successful log out" %}</h2>
2015-03-02 15:31:25 +00:00
</div>
</div>
</div>
{% endblock %}