Add season placeholder
This commit is contained in:
parent
ae9cc94506
commit
6684149e9f
5 changed files with 32 additions and 8 deletions
|
@ -28,7 +28,7 @@ form {
|
|||
section {
|
||||
max-width: 80ch;
|
||||
padding: 2rem;
|
||||
margin: 0 auto;
|
||||
margin: 1rem auto 0 auto;
|
||||
|
||||
background-color: #fff;
|
||||
}
|
||||
|
|
|
@ -8,5 +8,19 @@
|
|||
|
||||
function getCurrentSeason(): string
|
||||
{
|
||||
var_dump(date());
|
||||
$now = time();
|
||||
$month = date('n');
|
||||
$season = '';
|
||||
|
||||
$startOfYear = strtotime('01. January');
|
||||
$startOfEaster = strtotime('15. April'); // Approximate
|
||||
$startOfChristmas = strtotime('24. December');
|
||||
|
||||
if ($now <= $startOfEaster) {
|
||||
$season = 'Easter';
|
||||
} elseif ($now <= $startOfChristmas) {
|
||||
$season = 'Christmas';
|
||||
}
|
||||
|
||||
return $season;
|
||||
}
|
||||
|
|
|
@ -16,6 +16,12 @@ $page->header();
|
|||
<section>
|
||||
<h1>Welcome to wishthis</h1>
|
||||
<a href="?page=register">Register</a>
|
||||
<a href="?page=login">Login</a>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>Wishlist</h2>
|
||||
<a href="?page=wishlist">Create a wishlist</a>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
|
|
|
@ -94,6 +94,15 @@ switch ($step) {
|
|||
PRIMARY KEY (id)
|
||||
);');
|
||||
|
||||
/**
|
||||
* Wishlists
|
||||
*/
|
||||
$database->query('CREATE TABLE `wishlists` (
|
||||
`id` int AUTO_INCREMENT,
|
||||
`name` varchar(128) NOT NULL,
|
||||
PRIMARY KEY (id)
|
||||
);');
|
||||
|
||||
/**
|
||||
* Options
|
||||
*/
|
||||
|
|
|
@ -32,12 +32,7 @@ $page->header();
|
|||
<form method="post">
|
||||
<fieldset>
|
||||
<label>Name</label>
|
||||
<input type="name" name="name" placeholder="<?= getCurrentSeason() ?>" />
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<label>Password</label>
|
||||
<input type="password" name="password" />
|
||||
<input type="text" name="name" placeholder="<?= getCurrentSeason() ?>" />
|
||||
</fieldset>
|
||||
|
||||
<input type="submit" value="Create" />
|
||||
|
|
Loading…
Reference in a new issue