mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2025-04-20 21:27:34 +02:00
Update installer.blade.php
This commit is contained in:
parent
7fb8ecb47e
commit
07aa607997
@ -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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user