comp.php
1.43 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
<?PHP
//*****************************************************************************
//*
//* プログラム名:資金繰りシミュレーション申し込み
//* プログラムID:comp.php
//* 機能 :ユーザー情報を登録する
//* 作成者 :T.SATO(MTC)
//*
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
session_start();
//session_unregister("user_pass");
include("../include/const.inc");
include("../include/jcode.php");
$HP_Path = DEF_HP_URL;
$SYS_NAME = DEF_SYS_NAME;
$SYS_NAME = JcodeConvert($SYS_NAME , 2 , 1 );
?>
<!DOCTYPE html PUBLIC "-//W3C//Dtd XHTML 1.0 transitional//EN" "http://www.w3.org/tr/xhtml1/Dtd/xhtml1-transitional.dtd">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-JP">
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta http-equiv="Content-Style-Type" content="text/css">
<title>総合資金管理システム【はやぶさ君】|資金繰り表・売上管理・外注管理・借入金管理: お申し込み</title>
<link rel="stylesheet" href="../css/forms.css" type="text/css">
</head>
<body>
<h2>登録完了画面</h2>
<div class="inp_div">
<p><b>ユーザー登録が完了致しました。</b></p>
<br>
<p>ご登録いただきましたメールアドレスに、<br>
『<?PHP echo $SYS_NAME ?>』のID・パスワード等の<br>
ログイン情報をお送り致しましたのでご確認下さい。</p>
</div>
</body>
</html>