source: resources/views/auth/forgot.blade.php@ 1c25bcf

develop
Last change on this file since 1c25bcf was 1c25bcf, checked in by Berat Kjufliju <kufliju@…>, 3 years ago

added 2fa, bug fixes, edited blades

  • Property mode set to 100644
File size: 866 bytes
Line 
1@extends('layouts.auth')
2
3@section("title", "SaveSpace - Forgot")
4
5@section('content')
6
7 <!-- logo -->
8 <div id="logo">
9 <img class="logo" width="150" src="{{ url('assets/media/images/logo.png') }}" alt="image">
10 </div>
11 <!-- ./ logo -->
12
13 <h5>Reset password</h5>
14
15 <!-- form -->
16 <form action="{{ route("auth.forgot") }}" method="post">
17 @csrf
18
19 <div class="form-group">
20 <input type="email" name="email" class="form-control" id="" aria-describedby="emailHelp" placeholder="Email" required autofocus>
21 </div>
22 <button type="submit" class="btn btn-primary btn-block">Submit</button>
23 <hr>
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>
26 </form>
27 <!-- ./ form -->
28
29@endsection
Note: See TracBrowser for help on using the repository browser.