Redesign create a wishlist
This commit is contained in:
parent
58bbedaf14
commit
8b7d2cd799
1 changed files with 13 additions and 11 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue