Add email field to registration.

This commit is contained in:
Roger Braun 2017-04-16 11:02:03 +02:00
parent a766e886f5
commit 4228cfc342
1 changed files with 4 additions and 0 deletions

View File

@ -13,6 +13,10 @@
<label for='fullname'>Fullname</label>
<input :disabled="registering" v-model='user.fullname' class='form-control' id='fullname' placeholder='e.g. Lain Iwakura'>
</div>
<div class='form-group'>
<label for='email'>Email</label>
<input :disabled="registering" v-model='user.email' class='form-control' id='email' type="email">
</div>
<div class='form-group'>
<label for='bio'>Bio</label>
<input :disabled="registering" v-model='user.bio' class='form-control' id='bio'>