Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
agendamento
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
Marcos Albano
agendamento
Commits
af5b40e2
Commit
af5b40e2
authored
Aug 19, 2020
by
Felipe Tomé
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Colocando pagina de erro para cpf nao encontrado
parent
c06ecb5b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
0 deletions
+47
-0
cpfInvalido.blade.php
resources/views/cpfInvalido.blade.php
+43
-0
web.php
routes/web.php
+4
-0
No files found.
resources/views/cpfInvalido.blade.php
0 → 100644
View file @
af5b40e2
@
extends
(
'adminlte::page'
)
@
section
(
'title'
,
'CPF Inválido'
)
@
section
(
'content'
)
<
form
action
=
""
method
=
"post"
enctype
=
"multipart/form-data"
class
=
"form"
>
<
div
class
=
"row"
>
<!--
left
column
-->
<
div
class
=
"col-md-3"
>
</
div
>
<
div
class
=
"col-md-6 tela_cpf_invalido"
>
<
img
class
=
"logoidace"
src
=
"{{ asset('vendor/adminlte/dist/img/logo-idace.png') }}"
>
<
h1
class
=
"titulo"
>
Nenhum
dado
encontrato
para
esse
CPF
.</
h1
>
<
h4
class
=
"titulo2"
>
Caso
tenha
alguma
dúvida
,
entre
em
contato
através
do
telefone
:
85
0000
-
0000
</
h4
>
<!--
general
form
elements
-->
<!--
/.
card
-
header
-->
<!--
form
start
-->
<
button
href
=
"/"
type
=
"button "
style
=
"margin-top:100px"
class
=
"btn btn-block btn-primary btn_pesquisa"
>
Voltar
</
button
>
</
div
>
<!--
/.
card
-->
<!--/.
col
(
left
)
-->
<!--
right
column
-->
<!--/.
col
(
right
)
-->
<
div
class
=
"col-md-3"
>
</
div
>
</
div
>
</
form
>
@
endsection
\ No newline at end of file
routes/web.php
View file @
af5b40e2
...
@@ -44,4 +44,8 @@ Route::get('/', function () {
...
@@ -44,4 +44,8 @@ Route::get('/', function () {
return
view
(
'pesquisaCpf'
);
return
view
(
'pesquisaCpf'
);
});
});
Route
::
get
(
'/cpfinvalido'
,
function
()
{
return
view
(
'cpfInvalido'
);
});
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