mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-03-04 11:20:45 +01:00
84 lines
2.9 KiB
HTML
Executable File
84 lines
2.9 KiB
HTML
Executable File
{% extends "baseTemplate/index.html" %}
|
||
{% load i18n %}
|
||
{% block title %}{% trans "SSL Functions - CyberPanel" %}{% endblock %}
|
||
{% block content %}
|
||
|
||
{% load static %}
|
||
{% get_current_language as LANGUAGE_CODE %}
|
||
<!-- Current language: {{ LANGUAGE_CODE }} -->
|
||
|
||
|
||
<div class="container">
|
||
<div id="page-title">
|
||
<h2>{% trans "SSL Functions" %}</h2>
|
||
<p>{% trans "Issue Let’s Encrypt SSLs for websites and hostname." %}</p>
|
||
</div>
|
||
|
||
<div class="panel col-lg-10">
|
||
<div class="panel-body">
|
||
<h3 class="content-box-header">
|
||
{% trans "Available Functions" %}
|
||
</h3>
|
||
|
||
<div class="example-box-wrapper">
|
||
<div class="row">
|
||
|
||
{% if manageSSL or admin %}
|
||
|
||
<div class="col-md-4 btn-min-width">
|
||
<a href="{% url 'manageSSL' %}" title="{% trans 'Manage SSL' %}" class="tile-box tile-box-shortcut btn-primary">
|
||
<div class="tile-header">
|
||
{% trans "Manage SSL" %}
|
||
</div>
|
||
<div class="tile-content-wrapper">
|
||
<i class="fa fa-folder-open"></i>
|
||
</div>
|
||
</a>
|
||
</div>
|
||
|
||
{% endif %}
|
||
|
||
{% if hostnameSSL or admin %}
|
||
|
||
|
||
<div class="col-md-4 btn-min-width">
|
||
<a href="{% url 'sslForHostName' %}" title="{% trans 'Hostname SSL' %}" class="tile-box tile-box-shortcut btn-primary">
|
||
<div class="tile-header">
|
||
{% trans "Hostname SSL" %}
|
||
</div>
|
||
<div class="tile-content-wrapper">
|
||
<i class="fa fa-laptop"></i>
|
||
</div>
|
||
</a>
|
||
</div>
|
||
|
||
{% endif %}
|
||
|
||
{% if mailServerSSL or admin %}
|
||
|
||
<div class="col-md-4 btn-min-width">
|
||
<a href="{% url 'sslForMailServer' %}" title="{% trans 'MailServer SSL' %}" class="tile-box tile-box-shortcut btn-primary">
|
||
<div class="tile-header">
|
||
{% trans "MailServer SSL" %}
|
||
</div>
|
||
<div class="tile-content-wrapper">
|
||
<i class="fa fa-envelope-square"></i>
|
||
</div>
|
||
</a>
|
||
</div>
|
||
|
||
{% endif %}
|
||
|
||
|
||
</div>
|
||
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
|
||
{% endblock %}
|