Redesign create a wishlist

This commit is contained in:
Jay Trees 2022-01-14 08:43:48 +01:00
parent 58bbedaf14
commit 8b7d2cd799

View file

@ -23,20 +23,22 @@ if (isset($_POST['name'])) {
} }
$page->header(); $page->header();
$page->navigation();
?> ?>
<main> <main>
<section> <div class="ui container">
<h1>Create a wishlist</h1> <div class="ui segment">
<h1 class="ui header">Create a wishlist</h1>
<form method="post"> <form class="ui form" method="post">
<fieldset> <div class="field">
<label>Name</label> <label>Name</label>
<input type="text" name="name" placeholder="<?= getCurrentSeason() ?>" value="<?= getCurrentSeason() ?>" /> <input type="text" name="name" placeholder="<?= getCurrentSeason() ?>" value="<?= getCurrentSeason() ?>" />
</fieldset> </div>
<input type="submit" value="Create" /> <input class="ui primary button" type="submit" value="Create" />
</form> </form>
</section> </div>
</div>
</main> </main>
<?php <?php