home *** CD-ROM | disk | FTP | other *** search
/ 74.208.221.89 / 74.208.221.89.zip / 74.208.221.89 / manage / login.aspx < prev    next >
Text File  |  2015-02-23  |  5KB  |  170 lines

  1. ∩╗┐<%@ Page Language="VB" Debug="true" %>
  2. <script runat="server">
  3.     Dim mycon As New conValue()
  4.     Dim username, useremail, permissions As String
  5.     Sub page_load()
  6.        
  7.     End Sub
  8. </script>
  9. <!DOCTYPE html>
  10. <html lang="en-us">
  11.    
  12.     <!--#include file="head.ascx" -->
  13.     <body class="animated fadeInDown">
  14.  
  15.         <header id="header">
  16.  
  17.             <div id="logo-group">
  18.                 <span id="logo"> <img src="img/logo.png" alt="SmartAdmin"> </span>
  19.             </div>
  20.  
  21.             <span id="extr-page-header-space"></span>
  22.  
  23.         </header>
  24.  
  25.         <div id="main" role="main">
  26.  
  27.             <!-- MAIN CONTENT -->
  28.             <div id="content" class="container">
  29.  
  30.                 <div class="row">
  31.                     <div class="col-xs-12 col-sm-12 col-md-7 col-lg-8 hidden-xs hidden-sm">
  32.                         <h1 class="txt-color-red login-header-big">Management Area</h1>
  33.                         <div class="hero">
  34.  
  35.                             <div class="pull-left login-desc-box-l">
  36.                                 <h4 class="paragraph-header">Management area by Infologics Technologies</h4>
  37.                             
  38.                             </div>
  39.                             
  40.                             <img src="img/demo/iphoneview.png" class="pull-right display-image" alt="" style="width:210px">
  41.  
  42.                         </div>
  43.  
  44.                         
  45.  
  46.                     </div>
  47.                     <div class="col-xs-12 col-sm-12 col-md-5 col-lg-4">
  48.                         <div class="well no-padding">
  49.                             <form action="loginin.aspx" id="login-form" class="smart-form client-form" method="post">
  50.                                 <header>
  51.                                     Sign In
  52.                                 </header>
  53.  
  54.                                 <fieldset>
  55.                                     
  56.                                     <section>
  57.                                         <label class="label">E-mail</label>
  58.                                         <label class="input"> <i class="icon-append fa fa-user"></i>
  59.                                             <input type="email" name="email">
  60.                                             <b class="tooltip tooltip-top-right"><i class="fa fa-user txt-color-teal"></i> Please enter email address/username</b></label>
  61.                                     </section>
  62.  
  63.                                     <section>
  64.                                         <label class="label">Password</label>
  65.                                         <label class="input"> <i class="icon-append fa fa-lock"></i>
  66.                                             <input type="password" name="password">
  67.                                             <b class="tooltip tooltip-top-right"><i class="fa fa-lock txt-color-teal"></i> Enter your password</b> </label>
  68.                                         <div class="note">
  69.                                             <a href="forgotpassword.html">Forgot password?</a>
  70.                                         </div>
  71.                                     </section>
  72.  
  73.                                     <section>
  74.                                         <label class="checkbox">
  75.                                             <input type="checkbox" name="remember" checked="">
  76.                                             <i></i>Stay signed in</label>
  77.                                     </section>
  78.                                 </fieldset>
  79.                                 <footer>
  80.                                     <button type="submit" class="btn btn-primary">
  81.                                         Sign in
  82.                                     </button>
  83.                                 </footer>
  84.                             </form>
  85.  
  86.                         </div>
  87.                         
  88.                         
  89.                                                             
  90.                         
  91.                         
  92.                     </div>
  93.                 </div>
  94.             </div>
  95.  
  96.         </div>
  97.  
  98.         <!--================================================== -->    
  99.  
  100.         <!-- PACE LOADER - turn this on if you want ajax loading to show (caution: uses lots of memory on iDevices)-->
  101.         <script src="js/plugin/pace/pace.min.js"></script>
  102.  
  103.         <!-- Link to Google CDN's jQuery + jQueryUI; fall back to local -->
  104.         <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
  105.         <script> if (!window.jQuery) { document.write('<script src="js/libs/jquery-2.0.2.min.js"><\/script>');} </script>
  106.  
  107.         <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
  108.         <script> if (!window.jQuery.ui) { document.write('<script src="js/libs/jquery-ui-1.10.3.min.js"><\/script>');} </script>
  109.  
  110.         <!-- JS TOUCH : include this plugin for mobile drag / drop touch events         
  111.         <script src="js/plugin/jquery-touch/jquery.ui.touch-punch.min.js"></script> -->
  112.  
  113.         <!-- BOOTSTRAP JS -->        
  114.         <script src="js/bootstrap/bootstrap.min.js"></script>
  115.  
  116.         <!-- JQUERY VALIDATE -->
  117.         <script src="js/plugin/jquery-validate/jquery.validate.min.js"></script>
  118.         
  119.         <!-- JQUERY MASKED INPUT -->
  120.         <script src="js/plugin/masked-input/jquery.maskedinput.min.js"></script>
  121.         
  122.         <!--[if IE 8]>
  123.             
  124.             <h1>Your browser is out of date, please update your browser by going to www.microsoft.com/download</h1>
  125.             
  126.         <![endif]-->
  127.  
  128.         <!-- MAIN APP JS FILE -->
  129.         <script src="js/app.min.js"></script>
  130.  
  131.         <script type="text/javascript">
  132.             runAllForms();
  133.  
  134.             $(function() {
  135.                 // Validation
  136.                 $("#login-form").validate({
  137.                     // Rules for form validation
  138.                     rules : {
  139.                         email : {
  140.                             required : true,
  141.                             email : true
  142.                         },
  143.                         password : {
  144.                             required : true,
  145.                             minlength : 3,
  146.                             maxlength : 20
  147.                         }
  148.                     },
  149.  
  150.                     // Messages for form validation
  151.                     messages : {
  152.                         email : {
  153.                             required : 'Please enter your email address',
  154.                             email : 'Please enter a VALID email address'
  155.                         },
  156.                         password : {
  157.                             required : 'Please enter your password'
  158.                         }
  159.                     },
  160.  
  161.                     // Do not change code below
  162.                     errorPlacement : function(error, element) {
  163.                         error.insertAfter(element.parent());
  164.                     }
  165.                 });
  166.             });
  167.         </script>
  168.  
  169.     </body>
  170. </html>