mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-09-04 01:42:50 +02:00
59 lines
2.0 KiB
HTML
59 lines
2.0 KiB
HTML
{% 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">
|
||
<div class="panel-body">
|
||
<h3 class="title-hero">
|
||
{% trans "Available Functions" %}
|
||
</h3>
|
||
|
||
<div class="example-box-wrapper">
|
||
<div class="row">
|
||
<div class="col-md-6">
|
||
<a href="{% url 'createDatabase' %}" title="{% trans 'Create Database' %}" class="tile-box tile-box-shortcut btn-primary">
|
||
<div class="tile-header">
|
||
{% trans "Manage SSL" %}
|
||
</div>
|
||
<div class="tile-content-wrapper">
|
||
<i class="glyph-icon icon-dashboard"></i>
|
||
</div>
|
||
</a>
|
||
</div>
|
||
|
||
|
||
<div class="col-md-6">
|
||
<a href="{% url 'deleteDatabase' %}" title="{% trans 'Delete Database' %}" class="tile-box tile-box-shortcut btn-primary">
|
||
<div class="tile-header">
|
||
{% trans "Hostname SSL" %}
|
||
</div>
|
||
<div class="tile-content-wrapper">
|
||
<i class="glyph-icon icon-dashboard"></i>
|
||
</div>
|
||
</a>
|
||
</div>
|
||
|
||
|
||
</div>
|
||
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
|
||
{% endblock %} |