Last change
on this file was c5e383e, checked in by beratkjufliju <kufliju@…>, 3 years ago |
added db and storage backup
|
-
Property mode
set to
100644
|
File size:
1.1 KB
|
Line | |
---|
1 | @extends('layouts.auth')
|
---|
2 |
|
---|
3 | @section("title", "SaveSpace - New password")
|
---|
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>New password</h5>
|
---|
14 |
|
---|
15 | <!-- form -->
|
---|
16 | <form action="{{ route("auth.new-password", ["id" => $id, "token" => $token]) }}" method="post">
|
---|
17 | @csrf
|
---|
18 |
|
---|
19 | <div class="form-group">
|
---|
20 | <input id="password" type="password" name="password" class="form-control" placeholder="Password" autocomplete="off" required autofocus>
|
---|
21 | </div>
|
---|
22 | <div class="form-group">
|
---|
23 | <input id="password" type="password" name="password_confirmation" class="form-control" placeholder="Confirm password" autocomplete="off" required autofocus>
|
---|
24 | </div>
|
---|
25 | <div class="form-group">
|
---|
26 | <input type="text" id="security_code" class="form-control" name="security_code" autocomplete="off" placeholder="Security code" required>
|
---|
27 | </div>
|
---|
28 | <input type="submit" value="Submit" class="btn btn-primary btn-block">
|
---|
29 | <hr>
|
---|
30 | </form>
|
---|
31 | <!-- ./ form -->
|
---|
32 |
|
---|
33 | @endsection
|
---|
Note:
See
TracBrowser
for help on using the repository browser.