mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-05-26 07:08:05 +00:00
18 lines
451 B
HTML
18 lines
451 B
HTML
{% extends "base.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 %}
|