Change password from recovery layout
parent
3606fad1ed
commit
b98e49386c
|
@ -1,19 +1,18 @@
|
|||
extends dummy-layout
|
||||
extends layout
|
||||
|
||||
block head
|
||||
title Taiga Project management web application with scrum in mind!
|
||||
|
||||
block content
|
||||
// TODO: Xavi
|
||||
//div.wrapper
|
||||
// div.login-main
|
||||
// div.login-container
|
||||
// h1.logo
|
||||
// img(src="/images/logo.png", alt="TAIGA")
|
||||
// p.tagline Project management web application with scrum in mind!
|
||||
// p.login-error
|
||||
// span.title Ooops! Something went wrong!
|
||||
// span.text According to our Oompa Loompas, your are not registered yet.
|
||||
// a.icon.icon-delete(href="", title="Close message")
|
||||
div.wrapper
|
||||
div.login-main
|
||||
div.login-container
|
||||
h1.logo
|
||||
img(src="/images/logo.png", alt="TAIGA")
|
||||
p.tagline Project management web application with scrum in mind!
|
||||
p.login-error
|
||||
span.title Ooops! Something went wrong!
|
||||
span.text According to our Oompa Loompas, your are not registered yet.
|
||||
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.forgot-form-container(tg-forgot-Password)
|
||||
// p.forgot-text
|
||||
// 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
|
||||
// input(type="text", name="username", ng-model="data.username", data-required="true",
|
||||
// placeholder="Username or email")
|
||||
// fieldset
|
||||
// a.button.button-forgot.button-gray(href="", title="Reset Password") Reset Password
|
||||
div.change-password-form-container(tg-forgot-Password)
|
||||
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")
|
||||
fieldset
|
||||
input(type="password", name="repassword", placeholder="re-type new password")
|
||||
fieldset
|
||||
a.button.button.button-green(href="", title="Reset Password") Reset Password
|
||||
|
|
|
@ -75,7 +75,6 @@ p {
|
|||
|
||||
em { font-style: italic; }
|
||||
strong {
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
|
|
@ -67,6 +67,7 @@ $prefix-for-spec: true;
|
|||
@import 'modules/forgot-form';
|
||||
@import 'modules/wiki-nav';
|
||||
@import 'modules/wiki-summary';
|
||||
@import 'modules/change-password-from-recovery';
|
||||
|
||||
//Layout
|
||||
@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