mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-01-24 08:19:05 +01:00
43 lines
1.5 KiB
HTML
43 lines
1.5 KiB
HTML
{% extends "baseTemplate/newBase.html" %}
|
|
{% load i18n %}
|
|
{% block titleNew %}{% trans "Home - CyberPanel" %}{% endblock %}
|
|
{% block newContent %}
|
|
|
|
{% load static %}
|
|
|
|
<div ng-controller="phpMyAdminV2" class="p-8">
|
|
<div>
|
|
<p class="text-4xl font-bold">PHPMYAdmin</p>
|
|
<p class="text-xs text-gray-600 py-2 font-semibold">Access your databases via PHPMYAdmin</p>
|
|
</div>
|
|
<div>
|
|
<div class="py-4">
|
|
<p class="text-xl font-bold">PHPMYAdmin</p>
|
|
<p>Auto-login for PHPMYAdmin is now supported. Click the button below to generate auto-access for
|
|
PHPMYAdmin</p>
|
|
</div>
|
|
<hr>
|
|
<div>
|
|
<div class="mt-4 py-2 px-6">
|
|
<div>
|
|
<a ng-click="generateAccess()" href="#">
|
|
<button id="phpMyAdminlogin"
|
|
class="bg-orange-500 text-white font-bold px-4 py-2 text-xl">
|
|
Access Now
|
|
</button>
|
|
<img ng-hide="cyberPanelLoading" src="{% static 'images/loading.gif' %}">
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
$(document).ready(function () {
|
|
$(function () {
|
|
$('#phpMyAdminlogin').click();
|
|
});
|
|
});
|
|
</script>
|
|
</div>
|
|
{% endblock %}
|