Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
check
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_web
check
Commits
d20a4ea6
Commit
d20a4ea6
authored
Mar 24, 2014
by
Masaru Abe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#11415 11文字以上の場合、パスワードの変更が出来ない
parent
3711c861
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
13 deletions
+9
-13
abvw/js/settings.js
+3
-7
abvw/settings.html
+3
-3
login.html
+3
-3
No files found.
abvw/js/settings.js
View file @
d20a4ea6
...
@@ -893,21 +893,17 @@ function dspPwdUpd1_Click(e) {
...
@@ -893,21 +893,17 @@ function dspPwdUpd1_Click(e) {
if
(
isOK
)
{
if
(
isOK
)
{
// Check max length
// Check max length
if
(
!
ValidationUtil
.
CheckMaxLengthForByte
(
getCurrentPassword
(),
10
))
{
if
(
!
ValidationUtil
.
CheckMaxLengthForByte
(
getCurrentPassword
(),
16
))
{
isOK
=
false
;
isOK
=
false
;
}
}
if
(
!
ValidationUtil
.
CheckMaxLengthForByte
(
getNewPassword
(),
10
))
{
if
(
!
ValidationUtil
.
CheckMaxLengthForByte
(
getNewPassword
(),
16
))
{
isOK
=
false
;
isOK
=
false
;
}
}
if
(
!
ValidationUtil
.
CheckMaxLengthForByte
(
getNewPasswordRe
(),
10
))
{
if
(
!
ValidationUtil
.
CheckMaxLengthForByte
(
getNewPasswordRe
(),
16
))
{
isOK
=
false
;
isOK
=
false
;
}
}
// Data type
// Data type
if
(
!
ValidationUtil
.
IsAlphabetOrNumberOrSymbol
(
getCurrentPassword
()))
{
if
(
!
ValidationUtil
.
IsAlphabetOrNumberOrSymbol
(
getCurrentPassword
()))
{
isOK
=
false
;
isOK
=
false
;
}
}
if
(
!
ValidationUtil
.
IsAlphabetOrNumberOrSymbol
(
getNewPassword
()))
{
if
(
!
ValidationUtil
.
IsAlphabetOrNumberOrSymbol
(
getNewPassword
()))
{
...
...
abvw/settings.html
View file @
d20a4ea6
...
@@ -197,15 +197,15 @@
...
@@ -197,15 +197,15 @@
<span
id=
"dialog-error-message"
class=
"alertTxtDialog lang"
>
</span>
<span
id=
"dialog-error-message"
class=
"alertTxtDialog lang"
>
</span>
<dl>
<dl>
<dt><label
id=
"lblPwdCur"
class=
"lang"
lang=
"txtPwdCurr"
>
現在パスワード
</label></dt>
<dt><label
id=
"lblPwdCur"
class=
"lang"
lang=
"txtPwdCurr"
>
現在パスワード
</label></dt>
<dd><input
type=
"password"
id=
"txtPwdCur"
/></dd>
<dd><input
type=
"password"
id=
"txtPwdCur"
maxlength=
"16"
/></dd>
</dl>
</dl>
<dl>
<dl>
<dt><label
id=
"lblPwdNew"
class=
"lang"
lang=
"txtPwdNew"
>
変更パスワード
</label></dt>
<dt><label
id=
"lblPwdNew"
class=
"lang"
lang=
"txtPwdNew"
>
変更パスワード
</label></dt>
<dd><input
type=
"password"
id=
"txtPwdNew"
/></dd>
<dd><input
type=
"password"
id=
"txtPwdNew"
maxlength=
"16"
/></dd>
</dl>
</dl>
<dl>
<dl>
<dt><label
id=
"lblPwdNewRe"
class=
"lang"
lang=
"txtPwdNewRe"
>
(再)変更パスワード
</label></dt>
<dt><label
id=
"lblPwdNewRe"
class=
"lang"
lang=
"txtPwdNewRe"
>
(再)変更パスワード
</label></dt>
<dd><input
type=
"password"
id=
"txtPwdNewRe"
/></dd>
<dd><input
type=
"password"
id=
"txtPwdNewRe"
maxlength=
"16"
/></dd>
</dl>
</dl>
<p><label
class=
"lang"
lang=
"txtPwdRemind"
id=
"txtChangePassComment"
>
※スキップを選択すると、30日間このメッセージは表示されません
</label></p>
<p><label
class=
"lang"
lang=
"txtPwdRemind"
id=
"txtChangePassComment"
>
※スキップを選択すると、30日間このメッセージは表示されません
</label></p>
<p
class=
"loginbtn"
>
<p
class=
"loginbtn"
>
...
...
login.html
View file @
d20a4ea6
...
@@ -111,15 +111,15 @@ jQuery.event.add(window,"load",function() { // 全ての読み込み完了後に
...
@@ -111,15 +111,15 @@ jQuery.event.add(window,"load",function() { // 全ての読み込み完了後に
<span
id=
"dialog-error-message"
class=
"alertTxtDialog lang"
></span>
<span
id=
"dialog-error-message"
class=
"alertTxtDialog lang"
></span>
<dl>
<dl>
<dt
class=
"lang"
lang=
"txtPwdCurr"
>
旧パスワード:
</dt>
<dt
class=
"lang"
lang=
"txtPwdCurr"
>
旧パスワード:
</dt>
<dd><input
type=
"password"
id=
"txtCurrentPass"
/></dd>
<dd><input
type=
"password"
id=
"txtCurrentPass"
maxlength=
"16"
/></dd>
</dl>
</dl>
<dl>
<dl>
<dt
class=
"lang"
lang=
"txtPwdNew"
>
旧パスワード:
</dt>
<dt
class=
"lang"
lang=
"txtPwdNew"
>
旧パスワード:
</dt>
<dd><input
type=
"password"
id=
"txtNewPass"
/></dd>
<dd><input
type=
"password"
id=
"txtNewPass"
maxlength=
"16"
/></dd>
</dl>
</dl>
<dl>
<dl>
<dt
class=
"lang"
lang=
"txtPwdNewRe"
>
新パスワード(確認):
</dt>
<dt
class=
"lang"
lang=
"txtPwdNewRe"
>
新パスワード(確認):
</dt>
<dd><input
type=
"password"
id=
"txtConfirmNew"
/></dd>
<dd><input
type=
"password"
id=
"txtConfirmNew"
maxlength=
"16"
/></dd>
</dl>
</dl>
<p
class=
"lang"
lang=
"txtPwdRemind"
id=
"txtPwdRemind"
>
※スキップを選択すると、30日間このメッセージは表示されません
</p>
<p
class=
"lang"
lang=
"txtPwdRemind"
id=
"txtPwdRemind"
>
※スキップを選択すると、30日間このメッセージは表示されません
</p>
<p
class=
"loginbtn"
>
<p
class=
"loginbtn"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment