Files
WebDB/website/views/settings-view.php
Marijn Jansen eeedbe5c05 More fields
2017-01-12 14:19:08 +01:00

56 lines
1.7 KiB
PHP

<div class="content">
<div class="settings">
<form class="settings-profile platform">
<label>Voornaam</label>
<input type="text"
name="first-name"
placeholder="Voornaam"
title="Voornaam"
><br />
<label>Achternaam</label>
<input type="text"
name="last-name"
placeholder="Lastname"
><br />
<label>Woonplaats</label>
<input type="text"
name="place"
placeholder="Woonplaats"
><br />
<label>Geboortedatum</label>
<input type="date"
name="bday"
placeholder="01/01/1900"
><br />
<label>Locatie</label>
<input type="text"
name="location"
placeholder="Locatie"
><br />
<label></label>
<input type="submit"
>
</form>
<form class="settings-password platform" method="post">
<h5>Verander Wachtwoord</h5>
<br />
<input type="password"
name="password-old"
placeholder="Oud wachtwoord"
><br />
<input type="password"
name="password-new"
placeholder="Nieuw wachtwoord"
><br />
<input type="password"
name="password-confirm"
placeholder="Bevestig wachtwoord"
><br />
<input type="submit"
value="Verander wachtwoord"
>
</form>
</div>
</div>