mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 12:04:15 +00:00
17 lines
No EOL
455 B
HTML
17 lines
No EOL
455 B
HTML
{% extends "base_auth.html" %}
|
|
{% load i18n %}
|
|
{% block title %}
|
|
{% trans "WebVirtCloud" %} - {% trans "Sign Out"%}
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div>
|
|
<div class="page-header">
|
|
<a href="/"><h1>WebVirtCloud</h1></a>
|
|
</div>
|
|
<div class="col-12" role="main">
|
|
<div class="logout">
|
|
<h2>{% trans "Successful log out" %}</h2>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |