web terminal

This commit is contained in:
Usman Nasir
2019-11-02 19:29:02 +05:00
parent dd21a17b41
commit 087322f2b4
58 changed files with 16489 additions and 3141 deletions

View File

@@ -0,0 +1,46 @@
{% extends "baseTemplate/index.html" %}
{% load i18n %}
{% block title %}{% trans "Terminal - 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 "Terminal" %}</h2>
<p>{% trans "Execute your terminal commands." %}</p>
</div>
<div ng-controller="readAccessLogs" class="row">
<div class="panel">
<div class="panel-body">
<h3 class="content-box-header">
{% trans "Web Terminal" %} <img ng-hide="logFileLoading"
src="{% static 'images/loading.gif' %}">
</h3>
<div class="col-md-12">
<form class="form-horizontal bordered-row panel-body">
<div class="form-group">
<div id="term" class="col-sm-12">
</div>
</div>
</form>
</div>
<div style="display: none" id="verifyPath">{{ verifyPath }}</div>
</div>
</div>
</div>
</div>
{% endblock %}