Update installer.blade.php

This commit is contained in:
Julian Prieber 2022-11-23 22:43:23 +01:00
parent 7fb8ecb47e
commit 07aa607997
1 changed files with 13 additions and 1 deletions

View File

@ -188,10 +188,22 @@
</select> </select>
<label>Set your page as Home Page</label> <label>Set your page as Home Page</label>
<select style="max-width:300px" class="form-control" name="page"> <select id="select" style="max-width:300px" class="form-control" name="page">
<option>No</option> <option>No</option>
<option>Yes</option> <option>Yes</option>
</select> </select>
<style>.hidden{visibility:visible!important;}</style>
<span class="" id="hidden" style="visibility:hidden;display:flex;margin-top:-22px;margin-bottom:10px;color:#6c757d;font-size:90%;">This will move the Home Page to /home</span>
<script src="{{ asset('studio/external-dependencies/jquery-3.4.1.min.js') }}"></script>
<script>
$("#select").change(function(){
if($(this).val() == "Yes") {
$('#hidden').addClass('hidden');
} else {
$('#hidden').removeClass('hidden');
}
});
</script>
<label>App Name:</label> <label>App Name:</label>
<input style="max-width:275px;" class="form-control" value="LittleLink Custom" name="app" type="text" required> <input style="max-width:275px;" class="form-control" value="LittleLink Custom" name="app" type="text" required>