Make minor fixes in the change-password-from-recovery-page

stable
David Barragán Merino 2014-07-10 11:59:38 +02:00
parent ca5c55a935
commit bf7d5013d9
2 changed files with 8 additions and 5 deletions

View File

@ -1,4 +1,4 @@
extends layout
extends dummy-layout
block head
title Taiga Project management web application with scrum in mind!

View File

@ -1,12 +1,15 @@
div.change-password-form-container(tg-forgot-Password)
div.change-password-form-container(tg-change-password-from-recovery)
p.change-password-text
strong Create a new Taiga pass <br />
span And hey, you may want to eat some more iron-rich food, it's good for your brain :P
form(ng-submit="ctrl.submit()")
fieldset
input(type="password", name="password", placeholder="new password")
input(type="password", name="password", ng-model="data.password", data-required="true",
placeholder="New password")
fieldset
input(type="password", name="repassword", placeholder="re-type new password")
input(type="password", name="repassword", ng-model="data.password2", data-required="true",
placeholder="Re-type new password")
fieldset
a.button.button.button-green(href="", title="Reset Password") Reset Password
a.button.button.button-gray(href="", title="Reset Password") Reset Password
input(type="submit", style="display:none")