ajout heimdall

This commit is contained in:
2025-01-01 11:24:01 +01:00
parent f8be42e486
commit c52f60fca9
1477 changed files with 15692 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
<?php namespace App\SupportedApps\Webmin;
class Webmin extends \App\SupportedApps {
}

View File

@@ -0,0 +1,10 @@
{
"appid": "b9726e44ef09db12f6e010af8977d55dc971b841",
"name": "Webmin",
"website": "http://www.webmin.com/",
"license": "BSD 3-Clause \"New\" or \"Revised\" License",
"description": "Webmin is a web-based system configuration tool for Unix-like systems, although recent versions can also be installed and run on Windows.",
"enhanced": false,
"tile_background": "dark",
"icon": "webmin.svg"
}

View File

@@ -0,0 +1,19 @@
<h2>{{ __('app.apps.config') }} ({{ __('app.optional') }}) @include('items.enable')</h2>
<div class="items">
<div class="input">
<label>{{ strtoupper(__('app.url')) }}</label>
{!! Form::text('config[override_url]', null, array('placeholder' => __('app.apps.override'), 'id' => 'override_url', 'class' => 'form-control')) !!}
</div>
<div class="input">
<label>{{ __('app.apps.username') }}</label>
{!! Form::text('config[username]', null, array('placeholder' => __('app.apps.username'), 'data-config' => 'username', 'class' => 'form-control config-item')) !!}
</div>
<div class="input">
<label>{{ __('app.apps.password') }}</label>
{!! Form::text('config[password]', null, array('placeholder' => __('app.apps.password'), 'data-config' => 'password', 'class' => 'form-control config-item')) !!}
</div>
<div class="input">
<button style="margin-top: 32px;" class="btn test" id="test_config">Test</button>
</div>
</div>

View File

@@ -0,0 +1,10 @@
<ul class="livestats">
<li>
<span class="title">Queue</span>
<strong>{!! $queue_size !!}</strong>
</li>
<li>
<span class="title">Speed</span>
<strong>{!! $current_speed !!}</strong>
</li>
</ul>

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.7 KiB