Last change
on this file since dbc5976 was 0a1fb54, checked in by beratkjufliju <kufliju@…>, 3 years ago |
bug fixes
|
-
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.showLogin") }}" 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.