Facebook login implemented

This commit is contained in:
Joey Lai
2017-01-31 16:12:22 +01:00
parent 08f668859c
commit 8e98001217
82 changed files with 11126 additions and 133 deletions

View File

@@ -1,5 +1,6 @@
<select name="day_date" >
<option>dag</option>
<!--All the days-->
<select name="day_date" autocomplete="bday-day">
<option>Dag</option>
<?php
for($i=1; $i<32; $i++) {
$i = sprintf("%02d", $i);
@@ -9,7 +10,8 @@
}
?>
</select>
<select name="month_date">
<!--All the months-->
<select name="month_date" autocomplete="bday-month">
<option>Maand</option>
<option value="01" <?php submitselect($month_date, "01")?>>januari</option>
<option value="02" <?php submitselect($month_date, "02")?>>februari</option>
@@ -24,11 +26,12 @@
<option value="11" <?php submitselect($month_date, "11")?>>november</option>
<option value="12" <?php submitselect($month_date, "12")?>>december</option>
</select>
<select name="year_date">
<!--All the year from 1900 till current year-->
<select name="year_date" autocomplete="bday-year">
<option>Jaar</option>
<?php
$year = (new DateTime)->format("Y");
for($i=$year; $i > $year - 100; $i--) {
for($i=$year; $i >= 1900; $i--) {
?>
<option value="<?= $i ?>" <?php submitselect($year_date, $i)?>><?= $i ?></option>
<?php