Last change
on this file was 0a1fb54, checked in by beratkjufliju <kufliju@…>, 3 years ago |
bug fixes
|
-
Property mode
set to
100644
|
File size:
925 bytes
|
Line | |
---|
1 | @extends('layouts.auth')
|
---|
2 |
|
---|
3 | @section("title", "SaveSpace - Verify new email")
|
---|
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 your new e-mail address</h5>
|
---|
14 |
|
---|
15 | <!-- form -->
|
---|
16 | <form class="card" action="{{ route("auth.verify", ["id" => $id, "token" => $token]) }}" method="post">
|
---|
17 |
|
---|
18 | @csrf
|
---|
19 |
|
---|
20 | <div class="card-body p-6">
|
---|
21 |
|
---|
22 | <div class="form-group">
|
---|
23 | <label class="form-label">Security Code</label>
|
---|
24 | <input type="text" class="form-control" name="security_code" autocomplete="off" required>
|
---|
25 | </div>
|
---|
26 |
|
---|
27 | <div class="form-footer">
|
---|
28 | <input type="submit" value="Verify" class="btn btn-primary btn-block">
|
---|
29 | </div>
|
---|
30 |
|
---|
31 | </div>
|
---|
32 | </form>
|
---|
33 | <!-- ./ form -->
|
---|
34 |
|
---|
35 | @endsection
|
---|
Note:
See
TracBrowser
for help on using the repository browser.