First we need to install Brew, the dependency for the Mac:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"MacOS Monterney comes without PHP. Valet+ uses a special version of PHP that you can install like this:
| var passField = $form.find('input[data-name=password]'); | |
| passField.wrap("<div class='ff_input-group'></div>"); | |
| passField.after('<div class="ff_input-group-append"><span class="ff_input-group-text"><i style="cursor:pointer;" class="dashicons dashicons-hidden toggle-password"> </i></span></div>'); | |
| $form.find(".toggle-password").click(function() { | |
| $(this).toggleClass("dashicons-visibility dashicons-hidden"); | |
| if (passField.attr("type") == "password") { | |
| passField.attr("type", "text"); | |
| } else { |
| /* | |
| Add class 'dropzone' to the upload fields that you would like to have this styling | |
| */ | |
| .fluentform .dropzone .ff_upload_btn.ff-btn { | |
| color: #646c7f; | |
| padding: 3rem; | |
| width: 100%; | |
| border: 2px dashed #0087f7; | |
| border-radius: 5px; | |
| background: rgba(223, 240, 255, 0.13); |
| /** | |
| * Styles the Radio field as clickable image for Fluent Forms | |
| * | |
| * Use: Paste into Custom CSS Section of your Form | |
| * Add class "fancy-input" to container of all inputs that need the fancy styling | |
| * | |
| * Forked version of Sebastian Berger from inital post Fluent Forms FB Group - https://bit.ly/37BBpet | |
| * FB Post - https://bit.ly/2ZEn2BG | |
| * | |
| * Full Links at bottom |
| <?php | |
| /* | |
| * Code snippet to make login form with Fluent Forms WordPress Plugins | |
| * Steps: | |
| * 1. make a form with email and password (Make sure the name attribute is 'email' and 'password' for corresponding field) | |
| * 2. Paste the shorcode in a page | |
| * 3. Change the form id in the bellow code (23) with your created fluentform's form id and paste in your theme's functions.php file | |
| * 4. That's it | |
| * |
| // FILE PATH: /resources/js/app.js | |
| require('./bootstrap'); | |
| // Import Service Worker Registry | |
| require('./extensions/sw-registry'); | |
| import Vue from 'vue'; | |
| ... |
| <template> | |
| <q-page | |
| class="window-height window-width row justify-center items-center" | |
| style="background: linear-gradient(#8274C5, #5A4A9F);" | |
| > | |
| <div class="column q-pa-lg"> | |
| <div class="row"> | |
| <q-card square class="shadow-24" style="width:300px;height:485px;"> | |
| <q-card-section class="bg-deep-purple-7"> | |
| <h4 class="text-h5 text-white q-my-md">Company & Co</h4> |
| <?php | |
| namespace App\Exceptions; | |
| use Exception; | |
| use Illuminate\Validation\ValidationException; | |
| use Illuminate\Auth\Access\AuthorizationException; | |
| use Illuminate\Database\Eloquent\ModelNotFoundException; | |
| use Symfony\Component\HttpKernel\Exception\HttpException; | |
| use Laravel\Lumen\Exceptions\Handler as ExceptionHandler; |