<?php if ($auth->isAuthenticated()): ?> <main> <h2>Add <?= ucfirst($collection_type) ?> to your Collection</h2> <form action="<?= $action_url ?>" method="post"> <?php include realpath(__DIR__ . '/../js-warning.php') ?> <section> <div class="cssload-loader" hidden="hidden"> <div class="cssload-inner cssload-one"></div> <div class="cssload-inner cssload-two"></div> <div class="cssload-inner cssload-three"></div> </div> <label for="search-anime-collection">Search for <?= $collection_type ?> by name: <input type="search" id="search-anime-collection" name="search" /></label> <section id="series-list" class="media-wrap"> </section> </section> <br /> <table class="invisible form"> <tbody> <tr> <td class="align-right"><label for="media_id">Media</label></td> <td class='align-left'> <?php include 'media-select-list.php' ?> </td> </tr> <tr> <td><label for="notes">Notes</label></td> <td><textarea id="notes" name="notes"></textarea></td> </tr> <tr> <td> </td> <td> <button type="submit">Save</button> </td> </tr> </tbody> </table> </form> </main> <?php endif ?>