Advertisement
Guest User

View

a guest
Apr 25th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.54 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>SGNC - Login</title>
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  7. <meta name="keywords" content="Minimal Responsive web template, Bootstrap Web Templates, Flat Web Templates, Android Compatible web template,
  8. Smartphone Compatible web template, free webdesigns for Nokia, Samsung, LG, SonyEricsson, Motorola web design" />
  9. <script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
  10. <link href="css/bootstrap.min.css" rel='stylesheet' type='text/css' />
  11. <!-- Custom Theme files -->
  12. <link href="css/style.css" rel='stylesheet' type='text/css' />
  13. <link href="css/font-awesome.css" rel="stylesheet">
  14. <script src="js/jquery.min.js"> </script>
  15. <script src="js/bootstrap.min.js"> </script>
  16. </head>
  17. <body>
  18.     <div class="login">
  19.        
  20.     <h1><a href="">SGNC</a></h1>
  21.  
  22.         <div class="login-bottom">
  23.            
  24.         @if ($errors->any())
  25.       <div class="alert alert-danger">
  26.         <ul>
  27.             @foreach ($errors->all() as $error)
  28.               <li>{{ $error }}</li>
  29.             @endforeach
  30.         </ul>
  31.       </div>
  32.     @endif
  33.            
  34.             <h2>Login</h2>
  35.  
  36.        
  37.            
  38.             @if(Auth::guest())
  39.  
  40.  
  41.             <form method="POST" action="{{ route('login') }}">
  42.  
  43.                 @csrf
  44.  
  45.                 <div class="col-md-6">
  46.                     <div class="login-mail">
  47.                         <input type="text" name="matricula" placeholder="Matrícula" required="">
  48.                         <i class="glyphicon glyphicon-user"></i>
  49.                     </div>
  50.                     <div class="login-mail">
  51.                         <input type="password" name="senha" placeholder="Senha" required="">
  52.                         <i class="fa fa-lock"></i>
  53.                     </div>
  54.                     <a class="news-letter " href="#">
  55.                             <label class="checkbox1"><input type="checkbox" name="checkbox" ><i> </i>Lembrar-me</label>
  56.                     </a>
  57.                     <a class="news-letter " href="#">
  58.                             <label class="esqueciminhasenha">Esqueci minha senha</label>
  59.                     </a>   
  60.                 </div> 
  61.  
  62.                 <div class="col-md-6 login-do">
  63.                     <label class="hvr-shutter-in-horizontal login-sub">
  64.                         <input type="submit" value="login">
  65.                     </label>
  66.                 </div>
  67.                
  68.                 <div class="clearfix"> </div>
  69.             </form>
  70.  
  71.  
  72.             @endif
  73.  
  74.  
  75.         </div>
  76.     </div>
  77.         <!---->
  78. <div class="copy-right">
  79.     <p> &copy; Universidade Estacio de Sá - Campus : Cabo Frio .</p>       </div>  
  80. <!---->
  81. <!--scrolling js-->
  82.     <script src="js/jquery.nicescroll.js"></script>
  83.     <script src="js/scripts.js"></script>
  84.     <!--//scrolling js-->
  85. </body>
  86. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement