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
9b3fa578
Commit
9b3fa578
authored
Nov 15, 2022
by
Kang Donghun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ログインする時、トークンチェック処理修正
parent
3b875d1f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
abweb/html/login.html
+1
-0
abweb/js/login/login.js
+4
-0
No files found.
abweb/html/login.html
View file @
9b3fa578
...
@@ -93,6 +93,7 @@
...
@@ -93,6 +93,7 @@
<label
for=
"confirm"
class=
"lang"
lang=
"txtPwdNewRe"
>
新しいパスワード(確認)
</label>
<label
for=
"confirm"
class=
"lang"
lang=
"txtPwdNewRe"
>
新しいパスワード(確認)
</label>
<input
type=
"password"
class=
"form-control"
id=
"txtConfirmNew"
aria-describedby=
"confirm"
maxlength=
"16"
>
<input
type=
"password"
class=
"form-control"
id=
"txtConfirmNew"
aria-describedby=
"confirm"
maxlength=
"16"
>
</div>
</div>
<input
type=
"hidden"
id=
"getToken"
>
</form>
</form>
<span
id=
"dialog-error-message"
class=
"alertTxtDialog lang"
></span>
<span
id=
"dialog-error-message"
class=
"alertTxtDialog lang"
></span>
</div>
</div>
...
...
abweb/js/login/login.js
View file @
9b3fa578
...
@@ -216,6 +216,7 @@ LOGIN.processLogin = function () {
...
@@ -216,6 +216,7 @@ LOGIN.processLogin = function () {
// move to home.html page
// move to home.html page
COMMON
.
avwScreenMove
(
'index.html'
);
COMMON
.
avwScreenMove
(
'index.html'
);
}
else
if
(
data
.
requirePasswordChange
==
1
)
{
}
else
if
(
data
.
requirePasswordChange
==
1
)
{
$
(
'#getToken'
).
val
(
data
.
token
);
if
(
LOGIN
.
force_pw_change_on_login
==
2
)
{
if
(
LOGIN
.
force_pw_change_on_login
==
2
)
{
// force to change
// force to change
// password
// password
...
@@ -257,6 +258,7 @@ LOGIN.processLogin = function () {
...
@@ -257,6 +258,7 @@ LOGIN.processLogin = function () {
COMMON
.
avwScreenMove
(
'index.html'
);
COMMON
.
avwScreenMove
(
'index.html'
);
}
}
}
else
if
(
data
.
requirePasswordChange
==
2
)
{
}
else
if
(
data
.
requirePasswordChange
==
2
)
{
$
(
'#getToken'
).
val
(
data
.
token
);
if
(
LOGIN
.
force_pw_change_periodically
==
1
)
{
if
(
LOGIN
.
force_pw_change_periodically
==
1
)
{
// recommend to
// recommend to
// change
// change
...
@@ -325,6 +327,7 @@ LOGIN.changePasswordProcess = function () {
...
@@ -325,6 +327,7 @@ LOGIN.changePasswordProcess = function () {
var
loginId
=
$
(
'#txtAccId'
).
val
();
var
loginId
=
$
(
'#txtAccId'
).
val
();
var
password
=
$
(
'#txtCurrentPass'
).
val
();
var
password
=
$
(
'#txtCurrentPass'
).
val
();
var
confirmPass
=
$
(
'#txtConfirmNew'
).
val
();
var
confirmPass
=
$
(
'#txtConfirmNew'
).
val
();
var
tokenVal
=
$
(
'#getToken'
).
val
();
var
params
=
{
var
params
=
{
sid
:
sid
,
sid
:
sid
,
...
@@ -332,6 +335,7 @@ LOGIN.changePasswordProcess = function () {
...
@@ -332,6 +335,7 @@ LOGIN.changePasswordProcess = function () {
password
:
password
,
password
:
password
,
newPassword
:
confirmPass
,
newPassword
:
confirmPass
,
appId
:
4
,
appId
:
4
,
token
:
tokenVal
,
};
};
if
(
I18N
.
getCurrentLanguage
())
{
if
(
I18N
.
getCurrentLanguage
())
{
...
...
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