diff options
Diffstat (limited to 'views/anime_list')
-rw-r--r-- | views/anime_list/add.html.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/views/anime_list/add.html.php b/views/anime_list/add.html.php index 2e93ffd..de3da9c 100644 --- a/views/anime_list/add.html.php +++ b/views/anime_list/add.html.php @@ -3,11 +3,11 @@ <?php if (empty($anime)): ?> <h2 class="ribbon full">Find an Anime:</h2> <div class="triangle-ribbon"></div> -<br class="clear" /> +<br class="cl" /> <?php else: ?> <h2 class="ribbon full"><?= $anime->title ?></h2> <div class="triangle-ribbon"></div> -<br class="clear" /> +<br class="cl" /> <?php endif; ?> <script type="text/javascript"> @@ -30,6 +30,7 @@ } echo $this->form->field('my_watched_episodes', array('label' => 'Watched Episodes')); + echo "Start date"; echo $this->form->field('my_start_date', array('label' => 'Start Date')); echo $this->form->field('my_finish_date', array('label' => 'Finish Date')); echo $this->form->field('my_score', array('label' => 'Score')); @@ -46,4 +47,5 @@ echo $this->form->field('tags', array('type' => 'textarea', 'id' => 'tags')); echo $this->form->checkbox('rewatching', array('label' =>'Rewatching?', 'value' => false)); echo $this->form->submit('Save!'); -?>
\ No newline at end of file + echo $this->form->end(); +?> |