Last change
on this file since 4d73966 was 1c25bcf, checked in by Berat Kjufliju <kufliju@…>, 3 years ago |
added 2fa, bug fixes, edited blades
|
-
Property mode
set to
100644
|
File size:
735 bytes
|
Rev | Line | |
---|
[1c25bcf] | 1 | @extends('layouts.auth')
|
---|
| 2 |
|
---|
| 3 | @section("title", "SaveSpace | Login")
|
---|
| 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>Verify</h5>
|
---|
| 14 |
|
---|
| 15 | <form action="{{ route("verify-login", ["id" => request()->route("id"),"token" => request()->route("token")]) }}" method="post" accept-charset="utf-8">
|
---|
| 16 |
|
---|
| 17 | @csrf
|
---|
| 18 |
|
---|
| 19 | <div class="form-group">
|
---|
| 20 | <input type="text" class="form-control" name="code" autocomplete="off" placeholder="Security code" autofocus required>
|
---|
| 21 | </div>
|
---|
| 22 |
|
---|
| 23 | <input type="submit" class="btn btn-primary btn-block" value="Verify">
|
---|
| 24 |
|
---|
| 25 | </form>
|
---|
| 26 |
|
---|
| 27 | @endsection
|
---|
Note:
See
TracBrowser
for help on using the repository browser.