Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pa2_D3TI_20_03
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ratu Aryella Johana Sitorus
pa2_D3TI_20_03
Commits
314e8533
Commit
314e8533
authored
May 07, 2020
by
martinus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
membuat view untuk Verify
parent
8ac28aff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
0 deletions
+49
-0
verify.blade.php
resources/views/verify.blade.php
+49
-0
No files found.
resources/views/verify.blade.php
0 → 100644
View file @
314e8533
@
extends
(
'layout.layout'
)
@
section
(
'container'
)
@
if
(
session
(
'phone'
))
{{
"oke"
}}
@
endif
<
div
class
="
container
">
<div class="
row
justify
-
content
-
center
">
<div class="
col
-
md
-
8
">
<div class="
card
">
<div class="
card
-
header
">{{ __('Verify Your Phone Number') }}</div>
<div class="
card
-
body
">
@if (session('error'))
<div class="
alert
alert
-
danger
" role="
alert
">
{
{session('error')}
}
</div>
@endif
Please enter the OTP sent to your number:
{
{session('phone_number')}
}
<form action="
{{
route
(
'verify'
)}}
" method="
post
">
@csrf
<div class="
form
-
group
row
">
<label for="
verification_code
"
class="
col
-
md
-
4
col
-
form
-
label
text
-
md
-
right
">{{ __('Phone Number') }}</label>
<div class="
col
-
md
-
6
">
<input type="
hidden
" name="
phone_number
" value="
{{
session
(
'phone_number'
)}}
">
<input id="
verification_code
" type="
tel
"
class="
form
-
control
@
error
(
'verification_code'
)
is
-
invalid
@
enderror
"
name="
verification_code
" value="
{{
old
(
'verification_code'
)
}}
" required>
@error('verification_code')
<span class="
invalid
-
feedback
" role="
alert
">
<strong>{{
$message
}}</strong>
</span>
@enderror
</div>
</div>
<div class="
form
-
group
row
mb
-
0
">
<div class="
col
-
md
-
6
offset
-
md
-
4
">
<button type="
submit
" class="
btn
btn
-
primary
">
{{ __('Verify Phone Number') }}
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
@endsection
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment