Change password from recovery layout
parent
3606fad1ed
commit
b98e49386c
|
@ -1,19 +1,18 @@
|
||||||
extends dummy-layout
|
extends 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!
|
||||||
|
|
||||||
block content
|
block content
|
||||||
// TODO: Xavi
|
div.wrapper
|
||||||
//div.wrapper
|
div.login-main
|
||||||
// div.login-main
|
div.login-container
|
||||||
// div.login-container
|
h1.logo
|
||||||
// h1.logo
|
img(src="/images/logo.png", alt="TAIGA")
|
||||||
// img(src="/images/logo.png", alt="TAIGA")
|
p.tagline Project management web application with scrum in mind!
|
||||||
// p.tagline Project management web application with scrum in mind!
|
p.login-error
|
||||||
// p.login-error
|
span.title Ooops! Something went wrong!
|
||||||
// span.title Ooops! Something went wrong!
|
span.text According to our Oompa Loompas, your are not registered yet.
|
||||||
// span.text According to our Oompa Loompas, your are not registered yet.
|
a.icon.icon-delete(href="", title="Close message")
|
||||||
// a.icon.icon-delete(href="", title="Close message")
|
|
||||||
|
|
||||||
// include views/modules/change-password-from-recovery-form
|
include views/modules/change-password-from-recovery-form
|
||||||
|
|
|
@ -1,13 +1,12 @@
|
||||||
// TODO: Xavi
|
div.change-password-form-container(tg-forgot-Password)
|
||||||
//
|
p.change-password-text
|
||||||
//div.forgot-form-container(tg-forgot-Password)
|
strong Create a new Taiga pass <br />
|
||||||
// p.forgot-text
|
span And hey, you may want to eat some more iron-rich food, it's good for your brain :P
|
||||||
// strong Don't worry, it happens even in the best families :-) <br />
|
|
||||||
// span Give us your username or email and we'll sent you instructions to get a new one
|
form(ng-submit="ctrl.submit()")
|
||||||
//
|
fieldset
|
||||||
// form(ng-submit="ctrl.submit()")
|
input(type="password", name="password", placeholder="new password")
|
||||||
// fieldset
|
fieldset
|
||||||
// input(type="text", name="username", ng-model="data.username", data-required="true",
|
input(type="password", name="repassword", placeholder="re-type new password")
|
||||||
// placeholder="Username or email")
|
fieldset
|
||||||
// fieldset
|
a.button.button.button-green(href="", title="Reset Password") Reset Password
|
||||||
// a.button.button-forgot.button-gray(href="", title="Reset Password") Reset Password
|
|
||||||
|
|
|
@ -75,7 +75,6 @@ p {
|
||||||
|
|
||||||
em { font-style: italic; }
|
em { font-style: italic; }
|
||||||
strong {
|
strong {
|
||||||
color: #333;
|
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -67,6 +67,7 @@ $prefix-for-spec: true;
|
||||||
@import 'modules/forgot-form';
|
@import 'modules/forgot-form';
|
||||||
@import 'modules/wiki-nav';
|
@import 'modules/wiki-nav';
|
||||||
@import 'modules/wiki-summary';
|
@import 'modules/wiki-summary';
|
||||||
|
@import 'modules/change-password-from-recovery';
|
||||||
|
|
||||||
//Layout
|
//Layout
|
||||||
@import 'layout/base';
|
@import 'layout/base';
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
.change-password-text {
|
||||||
|
color: $grayer;
|
||||||
|
text-align: center;
|
||||||
|
}
|
|
@ -1 +1 @@
|
||||||
.forgot-form-container { }
|
// Forgot form
|
||||||
|
|
Loading…
Reference in New Issue