develop
Last change
on this file since 7ba896f was 4b7e2d3, checked in by beratkjufliju <kufliju@…>, 3 years ago |
bug fixes, edited export, added fileSeeder for DB testing
|
-
Property mode
set to
100644
|
File size:
1.0 KB
|
Rev | Line | |
---|
[7304c7f] | 1 | @extends('layouts.auth')
|
---|
| 2 |
|
---|
[4b7e2d3] | 3 | @section("title", "SaveSpace - Verify")
|
---|
[7304c7f] | 4 |
|
---|
| 5 | @section('content')
|
---|
| 6 |
|
---|
| 7 | <!-- logo -->
|
---|
| 8 | <div id="logo">
|
---|
| 9 | <img class="logo" src="{{ url('assets/media/images/logo.png') }}" alt="image">
|
---|
| 10 | </div>
|
---|
| 11 | <!-- ./ logo -->
|
---|
| 12 |
|
---|
| 13 | <h5>Verify your new e-mail address</h5>
|
---|
| 14 |
|
---|
| 15 | <!-- form -->
|
---|
| 16 | <form action="{{ route("auth.verify", ["id" => $id, "token" => $token]) }}" method="post">
|
---|
| 17 | @csrf
|
---|
| 18 | @if ($errors->any())
|
---|
| 19 | <div class="alert alert-danger">
|
---|
| 20 | <ul class="m-0 pl-2">
|
---|
| 21 | @foreach ($errors->all() as $error)
|
---|
| 22 | <li>{{ $error }}</li>
|
---|
| 23 | @endforeach
|
---|
| 24 | </ul>
|
---|
| 25 | </div>
|
---|
| 26 | @endif
|
---|
| 27 | <div class="form-group">
|
---|
| 28 | <input type="text" class="form-control" name="security_code" autocomplete="off" placeholder="Security code" autofocus required>
|
---|
| 29 | </div>
|
---|
| 30 | <input type="submit" value="Verify" class="btn btn-primary btn-block">
|
---|
| 31 | <hr>
|
---|
| 32 | </form>
|
---|
| 33 | <!-- ./ form -->
|
---|
| 34 |
|
---|
| 35 | @endsection
|
---|
Note:
See
TracBrowser
for help on using the repository browser.