Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.50 KB | None | 0 0
  1.       <form action="{{ route('post.login') }}" method="POST" class="form form--flex form--auth js-register-form js-parsley" novalidate="">
  2.                    {{ csrf_field() }}
  3.  
  4.  
  5.                       <div class="row">
  6.  
  7.                         <div class="form-group {{ $errors->has('pin') ? ' has-error' : '' }}">
  8.                           <label for="login-username-inline" class="control-label">PIN</label>
  9.                           <input type="text" name="pin" id="login-username-inline" placeholder="You can login using Username / Email " required="" data-parsley-trigger="keyup" data-parsley-minlength="6" data-parsley-validation-threshold="5" data-parsley-minlength-message="Login should be at least 6 chars" class="form-control">
  10.  
  11.                           @if ($errors->has('pin'))
  12.                           <span class="help-block text-md" >
  13.                             <strong>{{ $errors->first('pin') }}</strong>
  14.                           </span>
  15.                           @endif
  16. {{--
  17.                         <div class="form-group has-error">
  18.                           <label for="inputError" class="control-label">Input error</label>
  19.                           <input id="inputError" type="text" class="form-control">
  20.                         </div>
  21.                         --}}
  22.  
  23.  
  24.                       </div>
  25.                      
  26.                       <div class="form-group {{ $errors->has('password') ? ' has-error' : '' }}" >
  27.                         <label for="login-password-inline" class="control-label">Password</label>
  28.                         <input type="password" name="password" id="login-password-inline" required="" class="form-control">
  29.  
  30.  
  31.                         @if ($errors->has('password'))
  32.                         <span class="help-block text-md" >
  33.                           <strong>{{ $errors->first('password') }}</strong>
  34.                         </span>
  35.                         @endif
  36.  
  37.                       </div>
  38.  
  39.                       <div class="form-group">
  40.                         <input id="rememberCheckBox" type="checkbox" class="in-checkbox" data-parsley-multiple="rememberCheckBox" name="remember" {{ old('remember') ? 'checked' : '' }}>
  41.                         <label for="rememberCheckBox" class="in-label">Remember me</label>
  42.                       </div>
  43.  
  44.                     </div>
  45.  
  46.                    
  47.                     {{-- <div class="alert ui-pnotify-container alert-danger ui-pnotify-shadow">
  48.                       <h4 class="ui-pnotify-title text-md">
  49.                         <svg class="notify-icon">
  50.                           <use xlink:href="#icon-info"></use>
  51.                         </svg>Looks like there are errors
  52.                       </h4>
  53.                       <div style="display: none;" class="ui-pnotify-text"></div>
  54.                     </div>
  55.  
  56.                     --}}
  57.                     <div class="row">
  58.                       <div class="form__options form__options--forgot"><a href="user_restore_pass.html">Forgot your password ?</a>
  59.                       </div>
  60.  
  61.                       <button type="submit" class="form__submit signInButton">Sign in</button>
  62.                     </div>
  63.  
  64.  
  65.  
  66.                     <div class="fingerprint-spinner" id="loginSpinner">
  67.                       <div class="spinner-ring"></div>
  68.                       <div class="spinner-ring"></div>
  69.                       <div class="spinner-ring"></div>
  70.                       <div class="spinner-ring"></div>
  71.                     </div>
  72.                   </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement