| <!DOCTYPE html> | 
| <html lang="ja"> | 
|   <head> | 
|     <meta charset="utf-8"> | 
|     <meta http-equiv="X-UA-Compatible" content="IE=edge"> | 
|     <title>cyberspace │ sketch of three.js</title> | 
|     <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1"> | 
|     <meta name="description" content="cyberspace made with various simple objects."> | 
|     <meta name="keywords" content="undefined, Yoichi Kobayashi, WebGL, three.js"> | 
|     <meta name="theme-color" content="#111111"> | 
|     <meta name="msapplication-TileImage" content="/sketch-threejs/img/common/ms_tileimage.png"> | 
|     <meta name="msapplication-TileColor" content="#111111"> | 
|     <link rel="shortcut icon" href="img/common/icon.ico"> | 
|     <link rel="apple-touch-icon" sizes="180x180" href="img/common/app_icon.png"> | 
|     <link rel="stylesheet" href="css/main.min.css"> | 
|     <style> | 
|         .p-utility-menu { | 
|             top: 50%; | 
|             transform:translateY(-50%); | 
|             right: 60px; | 
|         } | 
|         .cool-form-block { | 
|             margin-bottom: 30px; | 
|         } | 
|         .cool-form-input { | 
|             margin-left: 8px; | 
|             background: none; | 
|             border: none; | 
|             box-shadow: none; | 
|             letter-spacing: 2px; | 
|             border-bottom: #ffffff solid 2px; | 
|         } | 
|         .cool-form-input:focus { | 
|             outline: none; | 
|         } | 
|         .l-page--white a { | 
|           cursor: pointer; | 
|           width: 58%; | 
|         } | 
|     </style> | 
|   </head> | 
|   <body> | 
|     <div class="l-page l-page--white" data-id="cyberspace"> | 
|         <div style="position: fixed; | 
|                     z-index: 100; | 
|                     top: 22px; | 
|                     left: 20px;"> | 
|             <img src="img/logo.png" alt="" style="width: 20%"> | 
|         </div> | 
|       <div class="p-sketch-outline"> | 
|         <h2 class="p-sketch-outline__title">Warehouse Control System</h2> | 
|         <p class="p-sketch-outline__date">posted: 2018.01.01 / update: 2022.03.18 | 
|         </p> | 
|         <p class="p-sketch-outline__description">wcs made with various simple objects.</p> | 
|       </div> | 
|       <canvas class="p-canvas-webgl" id="canvas-webgl"></canvas> | 
|   | 
|       <div class="p-utility-menu"> | 
|         <div class="cool-form-block"> | 
|           <label> | 
|             username | 
|           </label> | 
|           <input id="username" class="cool-form-input" type="text" autocomplete="off"> | 
|         </div> | 
|         <div class="cool-form-block"> | 
|           <label> | 
|             password | 
|           </label> | 
|           <input id="password" class="cool-form-input" type="password"> | 
|         </div> | 
|         <a class="c-button c-button--white login-btn"> | 
|           <span class="c-button__icon c-button__icon--back c-button__icon--white"></span> | 
|           <span class="c-button__label"> | 
|             <span class="js-split-str">l</span> | 
|             <span class="js-split-str">o</span> | 
|             <span class="js-split-str">g</span> | 
|             <span class="js-split-str">i</span> | 
|             <span class="js-split-str">n</span> | 
|           </span> | 
|         </a> | 
|       </div> | 
|     </div> | 
|     <script src="js/main.min.js"></script> | 
|     <script src="js/jquery/jquery-3.3.1.min.js"></script> | 
|     <script> | 
|       window.onload = function(){document.getElementById("username").focus();} | 
|   | 
|       $(document).on('click','.login-btn', function () { | 
|         window.location.href = "../index.html" | 
|       }); | 
|   | 
|       $('body').keydown(function () { | 
|         if (event.keyCode === 13) { | 
|           $(".login-btn").click(); | 
|         } | 
|       }); | 
|     </script> | 
|   </body> | 
| </html> |