service.officestation.jp Open in urlscan Pro
13.248.129.251  Public Scan

URL: https://service.officestation.jp/dn7dga/user-mypage/auth
Submission: On December 02 via manual from JP — Scanned from US

Form analysis 2 forms found in the DOM

POST https://service.officestation.jp/dn7dga/user-mypage/auth

<form method="POST" action="https://service.officestation.jp/dn7dga/user-mypage/auth" accept-charset="UTF-8" class="" data-form-type="loginForm"><input name="_token" type="hidden" value="6gxqBBnlnO7ZVGAy8H0LZf1p5Fc9AU2SbK8LfCp2">
  <section id="loginContent" class="login_content">
    <ul>
      <li>
        <div class="sty_ttl">ログインID</div>
        <input name="login_id" value="" type="text" class="" placeholder="ログインIDを入力してください" autocomplete="off" required="required" has_required="has_required" maxlength="50">
      </li>
      <li>
        <div class="sty_ttl">パスワード</div>
        <input name="login_pwd" value="" type="password" class="" placeholder="パスワードを入力してください" autocomplete="off" style="" required="required" has_required="has_required" maxlength="100">
        <script>
          $('input[name="login_pwd"]').attr('type', 'password');
          $('input[name="login_pwd"]').show();
        </script>
      </li>
      <li class="textL">
        <label class="cmp_input">
          <input type="checkbox" name="password_display">
          <i></i><span>パスワードを表示する</span>
        </label>
      </li>
    </ul>
    <script>
      //開閉
      $(function() {
        $('.password_check .inner_box').hide();
        $('.password_check .area_check').click(function() {
          $(this).toggleClass('active');
          $(this).next('.inner_box').slideToggle({
            complete: function() {
              if ($('.password_check .inner_box').is(':visible')) {
                // 非活性にする
                $('input[name=login_pwd]').prop('disabled', true);
                $('input.login_btn').prop('disabled', true);
                $('input[name=shi_mei]').attr('required', 'required');
                $('input[name=shi_mei]').attr('has_required', 'has_required');
              } else {
                // 活性化
                $('input[name=login_pwd]').prop('disabled', false);
                $('input.login_btn').prop('disabled', false);
                $('input[name=shi_mei]').removeAttr('required');
                $('input[name=shi_mei]').removeAttr('has_required');
              }
            }
          });
        });
      });
      //ダイアログ
      var password_info_dialog = function(mode) {
        dialog_title = '本人確認メールを送信しました';
        if (mode === 0) dialog_title = 'パスワード再発行';
        smartDialog({
          title: dialog_title,
          content: $("#password_info_dialog"),
          close_btn: 1,
          class: "cmp_white_area",
          bg_close: true,
          close: true,
          before: function(param) {
            var client_width = document.documentElement.clientWidth;
            if (client_width < 600) {
              param.width = '80%';
            } else {
              param.width = 385;
              if (mode !== 0) {
                param.width = 445;
              }
            }
          }
        });
      };
    </script>
    <script>
      $(function() {
        // パスワード再発行
        var ReissuePassword = (function() {
          var _send = function() {
            // login_id input check
            var input_login_id = $('input[name=login_id]').get(0);
            // reportValidityメソッドの無い場合(IE, etc)の対応
            if (!input_login_id.reportValidity) {
              input_login_id.reportValidity = function() {
                var tmpForm = document.createElement('form');
                tmpForm.style.display = 'inline';
                tmpForm.id = 'tmp_form';
                $(this).before(tmpForm);
                $(tmpForm).append(this);
                var btn = document.createElement('button');
                $(tmpForm).append(btn);
                btn.click();
                $(btn).remove();
                setTimeout(function() {
                  $('form#tmp_form').before($('input[name=login_id]').get(0));
                  $('form#tmp_form').remove();
                }, 2650);
                return false;
              };
            }
            // login_id のフォームバリデーションチェック。
            // checkValidity() 通らないならば reportValidity()。
            if (!input_login_id.checkValidity()) {
              input_login_id.reportValidity();
              return false;
            }
            // shi_mei input check
            var input_shi_mei = $('input[name=shi_mei]').get(0);
            if (!input_shi_mei.reportValidity) {
              input_shi_mei.reportValidity = function() {
                var tmpForm = document.createElement('form');
                tmpForm.style.display = 'inline';
                tmpForm.id = 'tmp_form';
                $(this).before(tmpForm);
                $(tmpForm).append(this);
                var btn = document.createElement('button');
                $(tmpForm).append(btn);
                btn.click();
                $(btn).remove();
                setTimeout(function() {
                  $('form#tmp_form').before($('input[name=shi_mei]').get(0));
                  $('form#tmp_form').remove();
                }, 2650);
                return false;
              };
            }
            if (!input_shi_mei.checkValidity()) {
              input_shi_mei.reportValidity();
              return false;
            }
            ajaxPostBlockUI();
            // send
            var data = {
              _token: $('meta[name="_token"]').attr('content'),
              login_id: $('input[name="login_id"]').val(),
              shi_mei: $('input[name="shi_mei"]').val(),
            };
            var url = '/dn7dga/employee-account-reissue-password';
            if (location.href.indexOf('/user-mypage/') > -1) {
              url = '/dn7dga/user-mypage/employee-account-reissue-password';
            }
            $.ajax({
              url: url,
              type: 'POST',
              dataType: 'json',
              data: data
            }).done(function(res) {
              if (res.status === 'success') {
                if (res.mode == 0) {
                  // パスワード再発行依頼
                  $('#reissue_password').hide();
                  $('#request_reissue_password').show();
                  // エラー表示箇所に注意文言を表示
                  errorDisplay(res.message);
                } else {
                  // パスワード再発行確認
                  $('#request_reissue_password').hide();
                  $('#reissue_password').show();
                }
                // パスワード再発行確認 or 依頼ダイアログ表示
                password_info_dialog(res.mode);
                // 閉じる
                $('.password_check .area_check').removeClass('active');
                $('.password_check').find('.inner_box').hide();
                // 活性化
                $('input[name=login_pwd]').prop('disabled', false);
                $('input.login_btn').prop('disabled', false);
                // クリア
                $('input[name=login_pwd]').val('');
              } else if (res.status === 'error') {
                errorDisplay(res.message);
                return false;
              }
            }).fail(function(jqXHR, textStatus, errorThrown) {
              if (jqXHR.status == 422) {
                // バリデーションエラー
                let error_messages = [];
                $.each(jqXHR.responseJSON.errors, function(key, messages) {
                  $.each(messages, function() {
                    error_messages.push(messages);
                  });
                });
                // エラー表示
                errorDisplay(error_messages.join('\n'));
              } else {
                // 例外エラー
                alert('エラーが発生しました');
              }
              return false;
            }).always(function() {
              ajaxPostUnblockUI();
            });
          };
          // エラー表示
          var errorDisplay = function(error_messages) {
            // エラー領域 (エラー表示用タグ) 存在チェック
            if ($('p.error').length) {
              // あり 既存のエラー領域へエラー文言更新
              $('p.error').empty();
            } else {
              // なし エラー領域を追加
              $('#loginContent').prepend('<p class="error"></p>');
            }
            $('p.error').html(error_messages);
          };
          return {
            send: _send
          }
        })();
        // 再発行ボタン click
        $('#reissue_password_btn').on('click', function() {
          ReissuePassword.send();
        });
      });
    </script>
    <div id="password_info_dialog" style="display:none;">
      <div class="dialog_main_content">
        <div id="reissue_password" class="display_inblock txt_left" style="background:rgba(0,0,0,0);"> オフィスステーションに登録されたメールアドレスに<br> 本人確認メールを送信しました。<br> 届いたメールを確認のうえ、再発行手続きを進めてください。 <ul class="cmp_list_as">
            <li>メールが届くまで5分程度かかる場合があります。</li>
          </ul><br>
          <div style="font-size: 12px;background:rgba(240,240,240,1);"> 送信元メールアドレス:no-reply@officestation.jp<br> メール件名:[オフィスステーション]本人確認のお願い </div>
        </div>
        <p id="request_reissue_password"> メールアドレスの登録がないため再発行できませんでした。<br> 管理者にパスワード再発行の依頼をおこないました。 </p>
      </div>
    </div>
    <div class="password_check">
      <div class="area_check"><span>パスワードをお忘れの方はこちら</span></div>
      <div class="inner_box" style="display: none;">
        <div class="ttl">パスワード再発行</div>
        <p class="mb15">ログインID・氏名 (本名) を入力し、再発行依頼ボタンを押してください。</p>
        <ul class="cmp_list_as">
          <li>パスワードの再発行依頼を行うと現在のパスワードは無効になり、再発行されたパスワードでしかログインができなくなりますのでご注意ください。</li>
        </ul>
        <div class="d_input_box">
          <dl class="d_req_set d_mt0">
            <dt>氏名 (本名)</dt>
            <dd>
              <input name="shi_mei" value="" type="text" class="kana_conv mr5 " placeholder="日本太郎" maxlength="40" data-title="氏名">
            </dd>
          </dl>
        </div>
        <div class="btn_area">
          <button class="cmp_btn_lg_btnfilled btn_cov none_move" id="reissue_password_btn" type="button">再発行依頼</button>
        </div>
        <div class="callcenter">
          <ul class="cmp_list_as">
            <li>メールアドレスの登録がある方は、本人確認メールを送信します。登録がない方は、管理者へ再発行依頼を通知します。</li>
            <li>ログインID、氏名 (本名) いずれかに誤りがあるとパスワードの再発行はできません。</li>
            <li>登録されている氏名 (本名) を入力してください。</li>
            <li>ビジネスネームは該当しません。</li>
            <li>従業員マイページのアカウントのみ、パスワードの再発行が可能です。</li>
          </ul>
        </div>
      </div>
    </div>
    <script type="text/javascript">
      if (tabid) {
        var msg = '<p id="tabmsg">既にオフィスステーションが起動されています。<br>複数起動されると、正しく動作しない可能性があります。</p>';
        // マイページ側のログイン画面の場合は、複数タブのメッセージを表示しない
        if (document.URL.indexOf('/user-mypage/auth') == -1) {
          document.write(msg);
        }
      }
    </script>
    <script>
      if ($('input[name="login_one_time_pwd"]').length) {
        $('input[name="login_id"]').attr('readonly', true);
        $('input[name="login_pwd"]').attr('readonly', true);
      };
    </script>
    <p class="loginBtn"><input class="login_btn" name="IE11Suck" type="submit" value="ログイン"></p>
  </section><!--end loginContent-->
</form>

Name: CertificationPageFormPOST https://www.login.secomtrust.net/customer/customer/pfw/CertificationPage.do

<form action="https://www.login.secomtrust.net/customer/customer/pfw/CertificationPage.do" name="CertificationPageForm" method="post" target="_blank" style="margin:0;">
  <input type="image" src="/img/secom.gif" width="88" height="145" name="Sticker" alt="クリックして証明書の内容をご確認ください" oncontextmenu="return false;">
  <input type="hidden" name="Req_ID" value="2573222498">
</form>

Text Content

使い方
ヘルプセンターはこちら
 * S1110|オフィスステーションのログイン方法
 * ログインパスワードを忘れてしまった、またはパスワードを複数回間違えてロックがかかってしまった時どうすればよいか

2024年分年末調整について
【再申請期間:12月2日(月)~12月26日(木)】
■必要書類は上記期間中にトヨタパーソナルサポート
 年末調整窓口へ必着で提出してください。
■ログイン後のタスク一覧に「確認中」の表示がある方は
 弊社で内容を確認中です。
 追加申請する必要がある場合は、トヨタパーソナルサポート
 年末調整窓口までご連絡ください。
■再申請期間の反映は以下の通りとなります。
 ・所得税の精算・・・・2月給与
 ・源泉徴収票発行・・・2月初旬

--------------------------------------------------------------------------------

 * ログインID
 * パスワード
 * パスワードを表示する

オフィスステーションに登録されたメールアドレスに
本人確認メールを送信しました。
届いたメールを確認のうえ、再発行手続きを進めてください。
 * メールが届くまで5分程度かかる場合があります。


送信元メールアドレス:no-reply@officestation.jp
メール件名:[オフィスステーション]本人確認のお願い

メールアドレスの登録がないため再発行できませんでした。
管理者にパスワード再発行の依頼をおこないました。

パスワードをお忘れの方はこちら
パスワード再発行

ログインID・氏名 (本名) を入力し、再発行依頼ボタンを押してください。

 * パスワードの再発行依頼を行うと現在のパスワードは無効になり、再発行されたパスワードでしかログインができなくなりますのでご注意ください。

氏名 (本名)
再発行依頼
 * メールアドレスの登録がある方は、本人確認メールを送信します。登録がない方は、管理者へ再発行依頼を通知します。
 * ログインID、氏名 (本名) いずれかに誤りがあるとパスワードの再発行はできません。
 * 登録されている氏名 (本名) を入力してください。
 * ビジネスネームは該当しません。
 * 従業員マイページのアカウントのみ、パスワードの再発行が可能です。



利用規約 | サービスプラン

 * 毎日 午前4時から午前4時30分 は、メンテナンスのためご利用いただけません。

オフィスステーション年末調整従業員専用ダイヤル

0120-001‐086

※電話番号のおかけ間違いにご注意ください

開設時間:10時から18時 (土日祝日除く) 開設期間:2024年10月10日から12月25日

年末調整のシステム操作についてのご不明点はお気軽にご連絡ください。
土日祝日の翌日の午前中は繋がりにくい場合がございます。
なお、税務相談などのシステム操作以外のご質問は受け付けておりませんのでご了承ください。

当ダイヤルで受け付けできないご相談内容の例とご相談先

 * ID・パスワードのご照会や、提出後の年末調整の内容など、会社が管理する情報に関するご相談
   * 年末調整の担当窓口へお問い合わせください。
 * 推奨環境ではないOS、ブラウザによる操作に関するご相談
   * 推奨環境以外のOS、ブラウザでは動作しない場合がございますので、推奨環境のOS、ブラウザをご使用くださいますようお願いいたします。
 * 税についてのご相談
   * 国税局電話相談センター等へご相談ください。
     (最寄りの税務署へ電話をかけ音声案内にしたがい「1」を選択すると電話相談センターへ繋がります。)

オフィスステーションシステム推奨環境

パソコン

OS:Microsoft Windows10 以降、Mac 12(Monterey)以降
ブラウザ:Microsoft Edge(最新版)、Google Chrome(最新版)、Safari(最新版)
※Microsoft EdgeのIEモードは推奨していません。

スマートフォン

OS:iOS 13以降、Android 9以降
ブラウザ:Chrome、Safariの最新バージョン

 * ブラウザはGoogle Chromeをご利用ください。
 * ブラウザの「Cookie」及び「JavaScript」を「有効」にしてご利用ください。