layout
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-06-28 15:28:22 +00:00
parent b4b11ef8f0
commit c0373bb7e0
2 changed files with 8 additions and 4 deletions

View File

@@ -11,6 +11,8 @@
<link href="installer.css?t=1" rel="stylesheet"> <link href="installer.css?t=1" rel="stylesheet">
</head> </head>
<body id="installer" class="text-center"> <body id="installer" class="text-center">
<div class="container-fluid">
<div class="col-md-12">
<form class="form-install" action="install.php" method="post"> <form class="form-install" action="install.php" method="post">
<div class="row"> <div class="row">
@@ -136,10 +138,10 @@
</div> </div>
</div> </div>
<button class="btn btn-lg btn-primary btn-block" type="submit">Start install</button> <button class="btn btn-lg btn-primary btn-block" type="submit">Start install</button>
</form> </form>
</div>
</div>
<!-- Optional JavaScript --> <!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS --> <!-- jQuery first, then Popper.js, then Bootstrap JS -->

View File

@@ -17,8 +17,6 @@ else {
putenv('LOCAL_PROXY=no'); putenv('LOCAL_PROXY=no');
} }
// TODO - js warning // TODO - js warning
//if [ "$SMARTHOST_PROXY" == "no" ]; then //if [ "$SMARTHOST_PROXY" == "no" ]; then
// echo "Warning! Local proxy will not work without smarthost proxy service."; // echo "Warning! Local proxy will not work without smarthost proxy service.";
@@ -42,4 +40,8 @@ putenv('DISCOVERY='.$_POST["discovery"]);
putenv('ADDITIONAL='.$_POST["additional"]); putenv('ADDITIONAL='.$_POST["additional"]);
// check ENV variables
$output = shell_exec("set");
echo $output;
?> ?>