Facebook login implemented
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user