Marijn settings #29

Merged
11166932 merged 1 commits from marijn-settings into master 2017-01-12 14:50:40 +01:00
2 changed files with 41 additions and 7 deletions

View File

@@ -2,7 +2,8 @@
} }
.settings input { .settings input,
.settings textarea{
padding: 10px; padding: 10px;
margin: 5px; margin: 5px;
border-radius: 10px; border-radius: 10px;
@@ -17,7 +18,9 @@
.settings input[type="password"], .settings input[type="password"],
.settings input[type="text"], .settings input[type="text"],
.settings input[type="date"] { .settings input[type="date"],
.settings input[type="email"],
.settings textarea{
border: 1px solid black; border: 1px solid black;
} }

View File

@@ -1,32 +1,47 @@
<div class="content"> <div class="content">
<div class="settings"> <div class="settings">
<form class="settings-profile platform"> <form class="settings-profile platform">
<label>Voornaam</label> <h5>Profiel Instllingen</h5>
<label for="first-name">Voornaam</label>
<input type="text" <input type="text"
name="first-name" name="first-name"
id="first-name"
placeholder="Voornaam" placeholder="Voornaam"
title="Voornaam" title="Voornaam"
><br /> ><br />
<label>Achternaam</label> <label for="last-name">Achternaam</label>
<input type="text" <input type="text"
name="last-name" name="last-name"
id="last-name"
placeholder="Lastname" placeholder="Lastname"
><br /> ><br />
<label>Woonplaats</label> <label for="place">Woonplaats</label>
<input type="text" <input type="text"
name="place" name="place"
id="place"
placeholder="Woonplaats" placeholder="Woonplaats"
><br /> ><br />
<label>Geboortedatum</label> <label for="bday">Geboortedatum</label>
<input type="date" <input type="date"
name="bday" name="bday"
id="bday"
placeholder="01/01/1900" placeholder="01/01/1900"
><br /> ><br />
<label>Locatie</label> <label for="location">Locatie</label>
<input type="text" <input type="text"
name="location" name="location"
id="location"
placeholder="Locatie" placeholder="Locatie"
><br /> ><br />
<label for="bio">Bio</label>
<textarea name="bio"
rows="5"
cols="10"
title="bio"
id="bio"
></textarea>
<br />
<label></label> <label></label>
<input type="submit" <input type="submit"
> >
@@ -52,5 +67,21 @@
value="Verander wachtwoord" value="Verander wachtwoord"
> >
</form> </form>
<form class="settings-email platform" method="post">
<h5>Verander Email</h5>
<br />
<input type="email"
name="email"
placeholder="Nieuw Email-adres"
><br />
<input type="email"
name="email-confirm"
placeholder="Bevestig Email"
><br />
<input type="submit"
value="Verander Email"
>
</form>
</div> </div>
</div> </div>