Skip to content

Commit

Permalink
Adding Password Reset with Securtiy Questions Files
Browse files Browse the repository at this point in the history
  • Loading branch information
Sabria committed Apr 9, 2015
1 parent c8e61bd commit 4171e80
Show file tree
Hide file tree
Showing 16 changed files with 2,048 additions and 1 deletion.
@@ -0,0 +1,22 @@
#
# Copyright (c) 2010-2013 Evolveum
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

page.title=Forget Password
PageForgetPassword.resetPassword=Reset Password
PageForgetPassword.username=Username
PageForgetPassword.password=Password
PageForgetPassword.email=E-mail
pageForgetPassword.message.usernotfound=User Not Found
Expand Up @@ -15,4 +15,5 @@
#
UserMenuPanel.logout=Log out
UserMenuPanel.editProfile=Edit profile
UserMenuPanel.resetPasswords=Reset passwords
UserMenuPanel.resetPasswords=Reset passwords
UserMenuPanel.editPasswordQuestions=Reset Security Questions
@@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2010-2013 Evolveum
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<wicket:extend>
<form wicket:id="mainForm" class="form-horizontal">

<div wicket:container wicket:id="pwdQuestionsPanel">
<div wicket:container wicket:id="questionAnswerPanel"></div>
</div>
<div class="main-button-bar">
<span class="button-group">
<a class="btn btn-default" wicket:id="back" />
</span>
<a class="btn btn-primary" wicket:id="save"/>
</div>


<!-- <div wicket:id="panelRepeater">
<div wicket:id="pwdQuestionsPanel"></div>
</div> -->
<!-- <div class="main-button-bar">
<span class="button-group">
<a class="btn btn-default" wicket:id="back" />
</span>
<a class="btn btn-primary" wicket:id="save"/>
</div> -->

</form>
</wicket:extend>
</body>
</html>

0 comments on commit 4171e80

Please sign in to comment.