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
04e50e29
Commit
04e50e29
authored
Apr 24, 2015
by
Masaru Abe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ログイン画面ドトール対応
parent
97a5715f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
24 deletions
+27
-24
abvw/js/login.js
+10
-11
login.html
+17
-13
No files found.
abvw/js/login.js
View file @
04e50e29
...
...
@@ -87,6 +87,12 @@ LOGIN.saveLoginInfo = function(paramLid, paramP, accountPath) {
//Check validation
LOGIN
.
checkValidation
=
function
()
{
//暗号化モードならチェック無し
if
(
ClientData
.
serviceOpt_encryption
()
==
'Y'
)
{
return
true
;
}
var
accountPath
=
$
(
'#txtAccPath'
).
val
();
var
loginId
=
$
(
'#txtAccId'
).
val
();
var
password
=
$
(
'#txtPassword'
).
val
();
...
...
@@ -172,10 +178,7 @@ LOGIN.processLogin = function(paramLid, paramP) {
password
=
$
(
'#txtPassword'
).
val
();
}
//var accountPath = $('#txtAccPath').val();
// var loginId = $('#txtAccId').val();
// var password = $('#txtPassword').val();
accountPath
=
"vietdh"
;
accountPath
=
$
(
'#txtAccPath'
).
val
();
var
requireChangePassword
=
0
;
var
skipPwdDate
;
...
...
@@ -433,9 +436,9 @@ LOGIN.changeLanguageEn = function(){
//Login click function
LOGIN
.
loginFunction
=
function
()
{
//
if (LOGIN.checkValidation()) {
if
(
LOGIN
.
checkValidation
())
{
LOGIN
.
processLogin
();
//
}
}
};
//Change Password function
...
...
@@ -967,16 +970,12 @@ LOGIN.ready = function(){
//doutor
var
paramLid
=
COMMON
.
getUrlParam
(
'lid'
,
''
);
var
paramP
=
COMMON
.
getUrlParam
(
'p'
,
''
);
$
(
'#normalUser'
).
show
();
$
(
'#formlogin'
).
hide
();
$
(
'#logologin'
).
animate
({
"margin-top"
:
0
},
LOGIN
.
timeWaitSplashScreen
,
function
()
{
if
(
paramLid
!=
''
&&
paramP
!=
''
){
$
(
'#formlogindoutor'
).
show
();
$
(
'#formlogin'
).
hide
();
}
else
{
$
(
'#formlogin'
).
show
();
}
$
(
'#menu-language'
).
animate
({
opacity
:
1
},
LOGIN
.
timeWaitSplashScreen
);
$
(
'#formlogin'
).
animate
({
opacity
:
1
},
LOGIN
.
timeWaitSplashScreen
);
$
(
'.cnt_footer'
).
animate
({
opacity
:
1
},
LOGIN
.
timeWaitSplashScreen
);
...
...
login.html
View file @
04e50e29
...
...
@@ -77,31 +77,35 @@
<article>
<img
src=
"./abvw/img/login/logo_login.png"
width=
"200"
class=
"clearboth"
id=
"logologin"
>
<section
id=
"formlogin"
>
<table
width=
"440"
border=
"0"
cellspacing=
"0"
>
<tr>
<th
width=
"100%"
>
ポータルサイトからログインしてください
</th>
</tr>
</table>
<input
type=
"hidden"
id=
"txtAccPath"
value=
"vietdh"
/>
<!--
<table width="440" border="0" cellspacing="0">
<tr>
<th
width=
"33%"
class=
"lang"
lang=
"txtLoginAccPath"
>
<!--アカウントパス-->
</th>
<th width="33%" class="lang" lang="txtLoginAccPath">
アカウントパス
</th>
<td width="67%"><input type="text" id="txtAccPath" maxlength="60" /></td>
</tr>
<tr>
<th
class=
"lang"
lang=
"txtLoginId"
>
<!--ログインID-->
</th>
<th class="lang" lang="txtLoginId">
ログインID
</th>
<td><input type="text" id="txtAccId" maxlength="54" /></td>
</tr>
<tr>
<th
class=
"lang"
lang=
"txtLoginPwd"
>
<!--パスワード-->
</th>
<th class="lang" lang="txtLoginPwd">
パスワード
</th>
<td><input type="password" id="txtPassword"/></td>
</tr>
</table>
<p
class=
"error lang"
id=
"main-error-message"
style=
"display:none;"
>
<!--パスワードまたはIDに誤りがあります-->
</p>
<p
class=
"memory"
><input
type=
"checkbox"
id=
"chkRemember"
/><label
class=
"lang"
lang=
"txtLoginPwdRbr"
for=
"chkRemember"
>
<!--アカウントパスとログインIDを記憶する-->
</label></p>
<a
class=
"loginbtn lang"
id=
"btnLogin"
lang=
"dspLogin"
>
<!--ログイン-->
</a>
</section>
<section
id=
"formlogindoutor"
style=
"display:none;"
>
<table
width=
"440"
border=
"0"
cellspacing=
"0"
>
<tr>
<th
width=
"100%"
>
ポータルサイトからログインしてください
</th>
</tr>
</table>
<p class="error lang" id="main-error-message" style="display:none;">パスワードまたはIDに誤りがあります</p>
<p class="memory"><input type="checkbox" id="chkRemember" /><label class="lang" lang="txtLoginPwdRbr" for="chkRemember">アカウントパスとログインIDを記憶する</label></p>
<a class="loginbtn lang" id="btnLogin" lang="dspLogin">ログイン</a>
-->
</section>
</article>
</div>
</div>
...
...
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