95 lines
3.3 KiB
HTML
95 lines
3.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<title>INSTALLER TOOL</title>
|
|
<!-- Bootstrap CSS -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.2.1/dist/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
|
|
<!-- Custom styles for this template -->
|
|
<link href="installer.css?t=3" rel="stylesheet">
|
|
</head>
|
|
<body id="manage" class="text-center">
|
|
<div class="container-fluid">
|
|
<div class="col-md-12">
|
|
|
|
<h1>Found deployed envinronment</h1>
|
|
|
|
<fieldset>
|
|
<legend>Deployments</legend>
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>Running services</legend>
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>Disk management</legend>
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>Monitor</legend>
|
|
</fieldset>
|
|
|
|
</div>
|
|
</div>
|
|
<br>
|
|
<br>
|
|
<!-- Optional JavaScript -->
|
|
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.6/dist/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.2.1/dist/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
|
|
<script>
|
|
jQuery(document).ready(function(){
|
|
|
|
jQuery('select#smarthost').click(function() {
|
|
if (jQuery(this).val()=='yes') jQuery('#div_smarthost').show();
|
|
else jQuery('#div_smarthost').hide();
|
|
|
|
if (jQuery("#smarthost").val()=='no' && jQuery("#localproxy").val()=='yes') {
|
|
alert("Warning! Local proxy will not work without smarthost proxy service.");
|
|
}
|
|
});
|
|
jQuery('select#vpn').click(function() {
|
|
if (jQuery(this).val()=='yes') jQuery('#div_vpn').show();
|
|
else jQuery('#div_vpn').hide();
|
|
});
|
|
jQuery('select#discovery').click(function() {
|
|
if (jQuery(this).val()=='yes') jQuery('#div_discover').show();
|
|
else jQuery('#div_discover').hide();
|
|
});
|
|
jQuery('select#additionals').click(function() {
|
|
if (jQuery(this).val()=='yes') jQuery('#div_additionals').show();
|
|
else jQuery('#div_additionals').hide();
|
|
});
|
|
jQuery('select#nextcloud').click(function() {
|
|
if (jQuery(this).val()=='Y') jQuery('#div_nextcloud').show();
|
|
else jQuery('#div_nextcloud').hide();
|
|
});
|
|
jQuery('select#bitwarden').click(function() {
|
|
if (jQuery(this).val()=='Y') jQuery('#div_bitwarden').show();
|
|
else jQuery('#div_bitwarden').hide();
|
|
});
|
|
jQuery('select#bitwarden_smtp').click(function() {
|
|
if (jQuery(this).val()=='3') jQuery('#div_bitwarden_smtp').show();
|
|
else jQuery('#div_bitwarden_smtp').hide();
|
|
});
|
|
jQuery('select#guacamole').click(function() {
|
|
if (jQuery(this).val()=='Y') jQuery('#div_guacamole').show();
|
|
else jQuery('#div_guacamole').hide();
|
|
});
|
|
jQuery('select#smtp_server').click(function() {
|
|
if (jQuery(this).val()=='Y') jQuery('#div_smtp_server').show();
|
|
else jQuery('#div_smtp_server').hide();
|
|
});
|
|
jQuery('select#roundcube').click(function() {
|
|
if (jQuery(this).val()=='Y') jQuery('#div_roundcube').show();
|
|
else jQuery('#div_roundcube').hide();
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|