Last change
on this file since 1f7c934 was 1c25bcf, checked in by Berat Kjufliju <kufliju@…>, 3 years ago |
added 2fa, bug fixes, edited blades
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Rev | Line | |
---|
[7304c7f] | 1 | @extends('layouts.auth')
|
---|
| 2 |
|
---|
[4b7e2d3] | 3 | @section("title", "SaveSpace - Create password")
|
---|
[7304c7f] | 4 |
|
---|
| 5 | @section('content')
|
---|
| 6 |
|
---|
| 7 | <!-- logo -->
|
---|
| 8 | <div id="logo">
|
---|
[1c25bcf] | 9 | <img class="logo" width="150" src="{{ url('assets/media/images/logo.png') }}" alt="image">
|
---|
[7304c7f] | 10 | </div>
|
---|
| 11 | <!-- ./ logo -->
|
---|
| 12 |
|
---|
| 13 | <h5>Create password</h5>
|
---|
| 14 |
|
---|
| 15 | <!-- form -->
|
---|
| 16 | <form action="{{ route("auth.create-password", ["id" => $id, "token" => $token]) }}" method="post">
|
---|
| 17 | @csrf
|
---|
[1c25bcf] | 18 |
|
---|
[7304c7f] | 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="Create Password" 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.