-
-
Notifications
You must be signed in to change notification settings - Fork 617
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
67842a7
commit 4b1f76c
Showing
9 changed files
with
449 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{% extends "baseTemplate/index.html" %} | ||
{% load i18n %} | ||
{% block title %}{% trans "ImunifyAV - 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 "ImunifyAV" %} - <a target="_blank" | ||
href="https://go.cyberpanel.net/imunify" | ||
style="height: 23px;line-height: 21px;" | ||
class="btn btn-border btn-alt border-red btn-link font-red" | ||
title=""><span>{% trans "Imunify Docs" %}</span></a></h2> | ||
<p>{% trans "Access ImunifyAV" %}</p> | ||
</div> | ||
|
||
<div class="panel"> | ||
<div class="panel-body"> | ||
<h3 class="title-hero"> | ||
{% trans "ImunifyAV" %} | ||
</h3> | ||
<div class="example-box-wrapper"> | ||
|
||
<p>{% trans "ImunifyAV is now integrated via their new API. You can manage Imunify by clicking below. You can use your server root credentials to access Imunify." %}</p> | ||
<br> | ||
<a target="_blank" href="http://{{ ipAddress }}/imunifyav"> | ||
<button class="btn btn-primary">Access Now | ||
</button> | ||
</a> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
{% endblock %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
{% extends "baseTemplate/index.html" %} | ||
{% load i18n %} | ||
{% block title %}{% trans "Not available - 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 "Not available" %} - <a target="_blank" | ||
href="https://go.cyberpanel.net/imunify" | ||
style="height: 23px;line-height: 21px;" | ||
class="btn btn-border btn-alt border-red btn-link font-red" | ||
title=""><span>{% trans "ImunifyAV Docs" %}</span></a></h2> | ||
<p>{% trans "ImunifyAV is not installed" %}</p> | ||
</div> | ||
|
||
<div ng-controller="installImunifyAV" class="panel"> | ||
<div class="panel-body"> | ||
<h3 class="title-hero"> | ||
{% trans "Activate Now" %} <img ng-hide="installDockerStatus" | ||
src="{% static 'images/loading.gif' %}"> | ||
</h3> | ||
<div class="example-box-wrapper"> | ||
|
||
<p>{% trans "Imunify is not installed, click to install now." %}</p> | ||
<!------ LSWS Switch box -----------------> | ||
|
||
<div style="margin-top: 2%" ng-hide="installBoxGen" class="col-md-12"> | ||
|
||
<form action="/" id="" class="form-horizontal bordered-row"> | ||
|
||
<div class="form-group"> | ||
<div style="margin-top: 2%;" class="col-sm-12"> | ||
<textarea ng-model="requestData" rows="15" | ||
class="form-control">{{ requestData }}</textarea> | ||
</div> | ||
</div> | ||
</form> | ||
</div> | ||
|
||
|
||
<!----- LSWS Switch box -----------------> | ||
<br> | ||
|
||
<form action="/" id="" class="form-horizontal bordered-row"> | ||
|
||
<div ng-hide="dockerInstallBTN" ng-hide="installationDetailsForm" class="form-group"> | ||
<label class="col-sm-3 control-label"></label> | ||
<div class="col-sm-6"> | ||
<button type="button" class="btn btn-primary" | ||
ng-click="submitinstallImunify()"> | ||
Install Now | ||
</button> | ||
</div> | ||
</div> | ||
|
||
</form> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
{% endblock %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.