33 lines
1.4 KiB
Plaintext
33 lines
1.4 KiB
Plaintext
extends dummy-layout
|
|
|
|
block head
|
|
title Taiga Your agile, free, and open source project management tool
|
|
|
|
block content
|
|
div.wrapper(tg-user-change-password, ng-controller="UserChangePasswordController as ctrl",
|
|
ng-init="section='user-settings'")
|
|
sidebar.menu-secondary.sidebar(tg-user-settings-navigation="change-password")
|
|
include views/modules/user-settings-menu
|
|
|
|
section.main.user-change-password
|
|
header
|
|
h1
|
|
span.green(tg-bo-html="sectionName")
|
|
|
|
form
|
|
fieldset
|
|
label(for="current-password") Current Password
|
|
input(type="password", placeholder="Password", id="current-password", ng-model="currentPassword")
|
|
fieldset
|
|
label(for="new-password") New Password
|
|
input(type="password", placeholder="New Password", id="new-password", ng-model="newPassword1")
|
|
fieldset
|
|
label(for="retype-password") Retype Password
|
|
input(type="password", placeholder="Retype Password", id="retype-password", ng-model="newPassword2")
|
|
fieldset
|
|
input(type="submit", class="hidden")
|
|
a.button.button-green(href="", ng-click="ctrl.save()") Save
|
|
|
|
div.lightbox.lightbox-delete-account.hidden
|
|
include views/modules/lightbox-delete-account
|