SIM0810.tpl
2.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<html>
<head>
<meta http-equiv="content-type" content="text/html; cahrset=euc-jp">
<meta http-equiv="content-style-type" content="text/css">
<meta name="robots" content="noindex, nofollow">
{literal}
<script language="javascript">
<!--
function data_chk(){
if (document.frm.uPw.value.length == 0){
alert("パスワードを入力してください");
document.frm.uPw.focus();
return false;
}
if (document.frm.uPw2.value.length == 0){
alert("パスワードを入力してください");
document.frm.uPw2.focus();
return false;
}
if (document.frm.uPw.value !== document.frm.uPw2.value){
alert("パスワードと確認入力が異なっています");
document.frm.uPw.focus();
return false;
}
document.frm.action = "SIM0811.php";
document.frm.method="POST";
document.frm.submit();
}
-->
</script>
{/literal}
<title>{$PHP_SYSNAME}</title>
<link rel="stylesheet" href="./templates/SIM.css" type="text/css" />
</head>
<body>
<form name="frm">
<div class="LoginBody">
<div class="LoginHeader">
<img src="./templates/img/logo.gif" alt="{$PHP_SYSNAME}" border="0">
</div>
<div class="MenuUserinfo">
<span class="NameText">{$PHP_GROUP_NAME} / {$PHP_BUMON_NAME} / {$PHP_USER_NAME}</span>
<span class="LinkText">
<a href = "{$DEFARR[2]}" target="_blank">ヘルプ</a> /
<a href = "SIM9999.php">ログアウト</a>
</span>
</div>
<div class="ConfOutline">
<div class="ConfTitle" style="padding:5;">
パスワード設定画面
</div>
<div class="ConfMain">
<div class="MenuButton">
<input type="button" class="SimCancelButton" value="メニューへ" onclick="location.href='SIM0100.php'">
</div>
<table>
<td>
<table class="ConfTable">
<tr>
<th width="120">氏名</th>
<td width="120">{$uName}</td>
</tr>
</Table>
<br>
<table class="ConfTable">
<tr>
<th width="120">変更パスワード</th>
<td width="120"><input type="password" size="15" name="uPw" value="{$uPw}"></td>
</tr>
<tr>
<th width="120">変更パスワード確認</th>
<td width="120"><input type="password" size="15" name="uPw2" value=""></td>
</tr>
</table>
</td>
</tr>
</table>
<table class="SimComment">
<tr><td>
パスワードは確認のために2箇所に入力してください
</td></tr>
</table>
<br>
<input type="button" class="SimOkButton" value=" {$btnCap} " onclick="data_chk();">
<input type="button" class="SimCancelButton" value=" 戻る " onclick="location.href='SIM0100.php'">
<br>
</div>
</div>
<div class="MenuUserinfo">
<span class="NameText"></span>
<span class="LinkText">
<a href = "{$DEFARR[1]}" target="_blank">ホームページへ</a>
</span>
</div>
<div class="LoginFooter">
<a href="{$DEFARR[3]}" target="_blank" title="メディアテック(株)ホームページへ">© Copyright2006-2009 All rights reserved by Mediatech. Co., Ltd.</a>
</div>
</div>
<input type="hidden" name="mode" value="{$mode}">
<input type="hidden" name="uSeq" value="{$uSeq}">
</form>
</body>
</html>