Changeset 1c25bcf for resources/views/auth/forgot.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/forgot.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 --> … … 16 16 <form action="{{ route("auth.forgot") }}" method="post"> 17 17 @csrf 18 @if ($errors->any())19 <div class="alert alert-danger">20 <ul class="m-0 pl-2">21 @foreach ($errors->all() as $error)22 <li>{{ $error }}</li>23 @endforeach24 </ul>25 </div>26 @endif27 18 28 @if(Session::has('forgotInfo'))29 <div class="alert alert-success fade show" role="alert">30 <strong> {{ Session::get('forgotInfo') }} </strong>31 <button type="button" class="close" data-dismiss="alert" aria-label="Close">32 </button>33 </div>34 @endif35 19 <div class="form-group"> 36 <input type="email" name="email" class="form-control" id="" aria-describedby="emailHelp" placeholder=" Username" required autofocus>20 <input type="email" name="email" class="form-control" id="" aria-describedby="emailHelp" placeholder="Email" required autofocus> 37 21 </div> 38 22 <button type="submit" class="btn btn-primary btn-block">Submit</button> 39 23 <hr> 40 <p class="text-muted"> Take a different action.</p>41 <a href="{{ route("auth.loginShow") }}" class="btn btn-sm btn-outline-light ml-1">Login !</a>24 <p class="text-muted">I remember my password</p> 25 <a href="{{ route("auth.loginShow") }}" class="btn btn-sm btn-outline-light ml-1">Login</a> 42 26 </form> 43 27 <!-- ./ form -->
Note:
See TracChangeset
for help on using the changeset viewer.