LinkStack/resources/views/studio/add-link.blade.php

48 lines
2.3 KiB
PHP
Raw Normal View History

2021-04-16 01:00:00 +02:00
@extends('layouts.sidebar')
@section('content')
<h2 class="mb-4"><i class="bi bi-plus"> Add Link</i></h2>
<form action="{{ route('addLink') }}" method="post">
@csrf
<div class="form-group col-lg-8">
<label>Link*</label>
2022-07-07 12:38:19 +02:00
<input type="text" name="link" class="form-control" placeholder="https://google.com" required>
2021-04-16 01:00:00 +02:00
</div>
2021-07-06 10:51:16 +02:00
<div class="form-group col-lg-8">
<label>Title</label>
<input type="text" name="title" class="form-control" placeholder="Internal name (optional)">
2021-07-06 10:51:16 +02:00
</div>
2021-04-16 01:00:00 +02:00
<div class="form-group col-lg-8">
<label for="exampleFormControlSelect1">Button*</label>
2021-04-16 01:00:00 +02:00
<select class="form-control" name="button">
<option style="background-color:#ffe8e4;"> custom </option>
<option style="background-color:#ffe8e4;"> custom_website </option>
2021-04-16 01:00:00 +02:00
@foreach($buttons as $button)
2022-07-31 23:55:20 +02:00
@if (!in_array($button->name, ['custom', 'custom_website', 'heading', 'space']))
2021-04-16 01:00:00 +02:00
<option> {{ $button->name }} </option>
2022-07-31 23:55:20 +02:00
@endif
2021-04-16 01:00:00 +02:00
@endforeach
<option style="background-color:#ebebeb;"> heading </option>
<option style="background-color:#ebebeb;"> space </option>
2021-04-16 01:00:00 +02:00
</select>
<br>
<label>* Required fields</label><br>
2021-04-16 01:00:00 +02:00
</div>
<div class="row"><button type="submit" class="mt-3 ml-3 btn btn-info">Submit</button><a style="color:white;background-color:#f8b739;" class="mt-3 ml-3 btn" href="{{ url('/studio/links') }}">See all links</a></div>
2021-04-16 01:00:00 +02:00
</form>
<br><br><details>
<summary>More information</summary>
<pre style="color: grey;">
The 'Custom' button allows you to add a custom link, where the text on the button is determined with the link title set above.
The 'Custom_website' button functions similar to the Custom button, with the addition of a function that requests the favicon from the chosen URL and uses it as the button icon.
The 'Space' button will be replaced with an empty space, so buttons could be visually separated into groups. Entering a number between 1-10 in the title section will change the empty space's distance.
The 'Heading' button will be replaced with a sub-heading, where the title defines the text on that heading.
</pre>
</details>
2021-04-16 01:00:00 +02:00
@endsection