Changeset 1c25bcf for resources/views/auth/login.blade.php
- Timestamp:
- 10/25/21 21:49:53 (3 years ago)
- Branches:
- develop, master
- Children:
- e756bd9
- Parents:
- 05e57e2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
resources/views/auth/login.blade.php
r05e57e2 r1c25bcf 7 7 <!-- logo --> 8 8 <div id="logo"> 9 <img class="logo" src="{{ url('assets/media/images/logo.png') }}" alt="image">9 <img class="logo" width="150" src="{{ url('assets/media/images/logo.png') }}" alt="image"> 10 10 </div> 11 11 <!-- ./ logo --> … … 15 15 <!-- form --> 16 16 <form action="{{ route("auth.login") }}" method="post" accept-charset="utf-8"> 17 17 18 @csrf 18 @if(Session::has('isActiveError'))19 <div class="alert alert-danger alert-dismissible fade show" role="alert">20 <strong> {{ Session::get('isActiveError') }} </strong>21 <button type="button" class="close" data-dismiss="alert" aria-label="Close"></button>22 </div>23 @endif24 19 25 @if(Session::has('loginError'))26 20 <div class="alert alert-error fade show" role="alert"> 27 <strong> {{ Session::get('loginError') }} </strong>28 21 <button type="button" class="close" data-dismiss="alert" aria-label="Close"> 29 22 </button> 30 23 </div> 31 @endif32 24 <div class="form-group"> 33 <input id="username" type="text" tabindex="1" class="form-control{{ Session::has('usernameError') ? ' is-invalid' : '' }}" value="{{ old('username') }}" name="username" placeholder="Username" autocomplete="off" required autofocus> 34 @if(Session::has('usernameError')) 25 <input id="username" type="text" tabindex="1" class="form-control" value="{{ old('username') }}" name="username" placeholder="Username" autocomplete="off" required autofocus> 35 26 <span class="invalid-feedback" role="alert"> 36 <strong>{{ Session::get('usernameError') }}</strong>37 27 </span> 38 @endif39 28 </div> 40 29 41 30 <div class="form-group"> 42 <input id="password" type="password" tabindex="2" class="form-control{{ Session::has('passwordError') ? ' is-invalid' : '' }}" name="password" autocomplete="off" placeholder="Password" required> 43 @if(Session::has('passwordError')) 31 <input id="password" type="password" tabindex="2" class="form-control" name="password" autocomplete="off" placeholder="Password" required> 44 32 <span class="invalid-feedback" role="alert"> 45 <strong>{{ Session::get('passwordError') }}</strong>46 33 </span> 47 @endif48 34 </div> 49 35
Note:
See TracChangeset
for help on using the changeset viewer.