Advertisement
Guest User

kenny

a guest
Nov 10th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 4.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.   <meta charset="utf-8">
  5.   <link rel="shortcut icon" href="captiveportal-favicon.ico" />
  6.   <title>Handle Enterprises</title>
  7.   <meta name="viewport" content="width=device-width, initial-scale=1">
  8.   <link href="captiveportal-bootstrap.min.css" rel="stylesheet">
  9.   <style type="text/css">
  10.     body {
  11.       background: url(captiveportal-back.png);
  12.       background-color: #444;
  13.       background: url(captiveportal-pinlayer2.png),url(captiveportal-pinlayer1.png),url(captiveportal-back.png);    
  14.     }
  15.     .vertical-offset-100 {
  16.       padding-top:100px;
  17.     }    
  18.   </style>
  19.   <script src="captiveportal-jquery-1.11.1.min.js"></script>
  20.   <script src="captiveportal-bootstrap.min.js"></script>
  21. </head>
  22. <body>
  23.   <script src="captiveportal-tweenlite.min.js"></script>
  24.  
  25.   <div class="container">
  26.     <div class="row vertical-offset-100">
  27.       <div class="col-md-6 col-md-offset-3">
  28.         <div class="panel panel-default">
  29.           <div class="panel-heading">
  30.             <h3 class="panel-title">Handle Enterprises Corp</h3>
  31.           </div>
  32.           <div class="panel-body">
  33.           <img src="captiveportal-logo1.jpg" alt="handle_enterprises" class="img-responsive">
  34.             <form method="post" action="$PORTAL_ACTION$" accept-charset="UTF-8" role="form" class="form-horizontal">
  35.               <fieldset>
  36.                 <!-- Required input boxes for portal page to work. Only required if user authentication is needed. -->
  37.                 <p>You are responsible for the security and appropriate use of Handle Enterprises network resources. The following is strictly prohibited:</p>
  38.                  <ul>
  39.                   <li>Causing a security breach to Handle Enterprises network resources, including, but not limited to, accessing data, servers, or accounts to which you are not authorized; circumventing user authentication on any device; or sniffing network traffic. </li>
  40.  
  41.                   <li>Causing a disruption of service to Handle Enterprises network resources, including, but not limited to, ICMP floods, packet spoofing, denial of service, heap or buffer overflows, and forged routing information for malicious purposes.</li>
  42.  
  43.                   <li>Introducing honeypots, honeynets, or similar technology on Handle Enterprisesnetwork.</li>
  44.  
  45.                   <li>Violating copyright law, including, but not limited to, illegally duplicating or transmitting copyrighted pictures, music, video, and software. </li>
  46.  
  47.                   <li>Exporting or importing software, technical information, encryption software, or technology in violation of international or regional export control laws.</li>
  48.  
  49.  
  50.                   <li>Intentionally introducing malicious code, including, but not limited to, viruses, worms, Trojan horses, e-mail bombs, spyware, adware, and keyloggers. </li>
  51.  
  52.                   <li>Port scanning or security scanning on Handle Enterprises network unless authorized in advance by Information Security and Management.</li>
  53.                 </ul>                
  54.                 <input name="redirurl" type="hidden" value="captiveportal-success.html">
  55.                 <div class="form-group">
  56.                     <label class="control-label col-sm-2" for="email">Username:</label>
  57.                     <div class="col-sm-10">                        
  58.                         <input id="auth_user" class="form-control" name="auth_user" size="25" type="text">
  59.                     </div>
  60.                 </div>
  61.                 <div class="form-group">
  62.                     <label class="control-label col-sm-2" for="email">Password:</label>
  63.                     <div class="col-sm-10">                        
  64.                         <input id="auth_pass" class="form-control" name="auth_pass" size="25" type="password">
  65.                     </div>
  66.                 </div>
  67.                 <div class="form-group">
  68.                     <label class="control-label col-sm-7" for="email">For Guess kindly entsVoucher code:</label>
  69.                     <div class="col-sm-5">
  70.                         <input name="auth_voucher" class="form-control" size="25" type="text">
  71.                     </div>
  72.                 </div>     
  73.                 <div class="form-group">
  74.                     <div class="col-sm-offset-2 col-sm-10">
  75.                       <input class="btn btn-lg btn-success btn-block form-control" name="accept" type="submit" value="ENTER">
  76.                     </div>
  77.                  </div>
  78.                 </fieldset>
  79.             </form>
  80.           </div>
  81.         </div>
  82.       </div>
  83.     </div>
  84.   </div><script type="text/javascript">
  85.   $(document).ready(function(){
  86.     $(document).mousemove(function(e){
  87.      TweenLite.to($('body'),
  88.       .5,
  89.       { css:
  90.         {
  91.           backgroundPosition: ""+ parseInt(event.pageX/8) + "px "+parseInt(event.pageY/'12')+"px, "+parseInt(event.pageX/'15')+"px "+parseInt(event.pageY/'15')+"px, "+parseInt(event.pageX/'30')+"px "+parseInt(event.pageY/'30')+"px"
  92.         }
  93.       });
  94.    });
  95.   });</script>
  96. </body>
  97. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement