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
2eb4b593
Commit
2eb4b593
authored
Aug 19, 2020
by
Felipe Tomé
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Colocando a pagina de pesquisa de cpf como pagina raiz
parent
e1755997
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
58 additions
and
1 deletion
+58
-1
pesquisaCpf.blade.php
resources/views/pesquisaCpf.blade.php
+57
-0
web.php
routes/web.php
+1
-1
No files found.
resources/views/pesquisaCpf.blade.php
0 → 100644
View file @
2eb4b593
@
extends
(
'adminlte::page'
)
@
section
(
'title'
,
'Pesquisar CPF'
)
@
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"
>
<
img
class
=
"logoidace"
src
=
"{{ asset('img/logo-idace.png') }}"
>
<
h1
class
=
"titulo"
>
Agendamento
de
entrega
de
Títulos
</
h1
>
<
h4
class
=
"titulo2"
>
Preecha
com
cpf
Válido
</
h4
>
<!--
general
form
elements
-->
<!--
/.
card
-
header
-->
<!--
form
start
-->
<
form
role
=
"form"
>
<
div
class
=
"card-body"
>
<
div
class
=
"form-group "
>
<!--
<
label
for
=
"exampleInputEmail1"
>
CPF
</
label
>
-->
<
input
type
=
"email"
class
=
"form-control label_cpf"
data
-
mask
=
"000.000.000-00"
id
=
"exampleInputEmail1"
placeholder
=
"000.000.000-00"
>
<
button
type
=
"button "
class
=
"btn btn-block btn-primary btn_pesquisa"
>
Pesquisar
</
button
>
</
div
>
</
div
>
<!--
/.
card
-
body
-->
</
form
>
</
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 @
2eb4b593
...
@@ -41,7 +41,7 @@ Route::post('titulos', 'TituloController@store')->name('titulos.store'); //Cadas
...
@@ -41,7 +41,7 @@ Route::post('titulos', 'TituloController@store')->name('titulos.store'); //Cadas
Route
::
get
(
'/'
,
function
()
{
Route
::
get
(
'/'
,
function
()
{
return
view
(
'
welcome
'
);
return
view
(
'
pesquisaCpf
'
);
});
});
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