Added showEmail and showBday to the settings page
This commit is contained in:
@@ -51,6 +51,32 @@ $settings = getSettings();
|
||||
value="<?= $settings["birthdate"]?>"
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<label for="showBday">Toon leeftijd</label>
|
||||
<input type="radio"
|
||||
name="showBday"
|
||||
value="1"
|
||||
<?php echo ($settings["showBday"] ? "checked" : "")?>
|
||||
> Ja
|
||||
<input type="radio"
|
||||
name="showBday"
|
||||
value="0"
|
||||
<?php echo ($settings["showBday"] ? "" : "checked")?>
|
||||
> Nee
|
||||
</li>
|
||||
<li>
|
||||
<label for="showEmail">Toon Email</label>
|
||||
<input type="radio"
|
||||
name="showEmail"
|
||||
value="1"
|
||||
<?php echo ($settings["showEmail"] ? "checked" : "")?>
|
||||
> Ja
|
||||
<input type="radio"
|
||||
name="showEmail"
|
||||
value="0"
|
||||
<?php echo ($settings["showEmail"] ? "" : "checked")?>
|
||||
> Nee
|
||||
</li>
|
||||
<li>
|
||||
<label for="bio">Bio</label>
|
||||
<textarea name="bio"
|
||||
|
||||
Reference in New Issue
Block a user