38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
<?php if (is_logged_in()): ?>
|
|
<main>
|
|
<form action="<?= $action_url ?>" method="post">
|
|
<dl>
|
|
<dt>Series</dt>
|
|
<dd><label>Search for anime name: <input type="search" id="search" /></label></dd>
|
|
<dd>
|
|
<section id="series_list" class="media-wrap">
|
|
</section>
|
|
</dd>
|
|
|
|
<dt><label for="media_id">Media</label></dt>
|
|
<dd>
|
|
<select name="media_id" id="media_id">
|
|
<?php foreach($media_items as $id => $name): ?>
|
|
<option value="<?= $id ?>"><?= $name ?></option>
|
|
<?php endforeach ?>
|
|
</select>
|
|
</dd>
|
|
|
|
<dt><label for="notes">Notes</label></dt>
|
|
<dd><textarea id="notes" name="notes"></textarea></dd>
|
|
|
|
<dt> </dt>
|
|
<dd>
|
|
<button type="submit">Save</button>
|
|
</dd>
|
|
</dl>
|
|
</form>
|
|
</main>
|
|
<template id="show_list">
|
|
<article class="media">
|
|
<div class="name"><label><input type="radio" name="id" value="{{:id}}" /> <span>{{:title}}<br />{{:alternate_title}}</span></label></div>
|
|
<img src="{{:cover_image}}" alt="{{:title}}" />
|
|
</article>
|
|
</template>
|
|
<script src="<?= $config->asset_url('js.php?g=collection&debug=1') ?>"></script>
|
|
<?php endif ?>
|