Make minor fixes in the change-password-from-recovery-page
parent
ca5c55a935
commit
bf7d5013d9
|
@ -1,4 +1,4 @@
|
||||||
extends layout
|
extends dummy-layout
|
||||||
|
|
||||||
block head
|
block head
|
||||||
title Taiga Project management web application with scrum in mind!
|
title Taiga Project management web application with scrum in mind!
|
||||||
|
|
|
@ -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
|
p.change-password-text
|
||||||
strong Create a new Taiga pass <br />
|
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
|
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()")
|
form(ng-submit="ctrl.submit()")
|
||||||
fieldset
|
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
|
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
|
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")
|
||||||
|
|
Loading…
Reference in New Issue