Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Walter Felipe
submeta
Commits
d7b1b4bd
Commit
d7b1b4bd
authored
Jun 01, 2021
by
Gabriel-31415
Browse files
ajustes
parent
8b64b894
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
resources/views/evento/formulario/participantes.blade.php
View file @
d7b1b4bd
...
@@ -42,7 +42,7 @@
...
@@ -42,7 +42,7 @@
</div>
</div>
<div
class=
"col-6"
>
<div
class=
"col-6"
>
@component('componentes.input', ['label' => 'E-mail'])
@component('componentes.input', ['label' => 'E-mail'])
<input
type=
"
text
"
class=
"form-control"
name=
"emailParticipante[]"
placeholder=
"E-mail"
required
/>
<input
type=
"
email
"
class=
"form-control"
name=
"emailParticipante[]"
placeholder=
"E-mail"
required
/>
@endcomponent
@endcomponent
</div>
</div>
<div
class=
"col-6"
>
<div
class=
"col-6"
>
...
@@ -51,24 +51,24 @@
...
@@ -51,24 +51,24 @@
@endcomponent
@endcomponent
</div>
</div>
<div
class=
"col-6"
>
<div
class=
"col-6"
>
@component('componentes.input', ['label' => 'CPF'
, 'class' => 'cpf'
])
@component('componentes.input', ['label' => 'CPF'])
<input
type=
"text"
class=
"form-control cpf"
name=
"cpf[]"
placeholder=
"CPF"
required
/>
<input
type=
"text"
class=
"form-control cpf"
name=
"cpf[]"
placeholder=
"CPF"
required
/>
@endcomponent
@endcomponent
</div>
</div>
<div
class=
"col-6"
>
<div
class=
"col-6"
>
@component('componentes.input', ['label' => 'RG'])
@component('componentes.input', ['label' => 'RG'])
<input
type=
"
text
"
class=
"form-control"
name=
"rg[]"
placeholder=
"RG"
required
/>
<input
type=
"
number
"
class=
"form-control"
min=
"1"
maxlength=
"8"
name=
"rg[]"
placeholder=
"RG"
required
/>
@endcomponent
@endcomponent
</div>
</div>
<div
class=
"col-6"
>
<div
class=
"col-6"
>
@component('componentes.input', ['label' => 'Celular'])
@component('componentes.input', ['label' => 'Celular'])
<input
type=
"te
xt
"
class=
"form-control"
name=
"celular[]"
placeholder=
"Celular"
required
/>
<input
type=
"te
l
"
class=
"form-control
celular
"
name=
"celular[]"
placeholder=
"Celular"
required
/>
@endcomponent
@endcomponent
</div>
</div>
<div
class=
"col-md-12"
><h5>
Endereço
</h5></div>
<div
class=
"col-md-12"
><h5>
Endereço
</h5></div>
<div
class=
"col-6"
>
<div
class=
"col-6"
>
@component('componentes.input', ['label' => 'CEP'])
@component('componentes.input', ['label' => 'CEP'])
<input
type=
"
text
"
class=
"form-control"
name=
"cep[]"
placeholder=
"CEP"
required
/>
<input
type=
"
number
"
class=
"form-control"
name=
"cep[]"
placeholder=
"CEP"
required
/>
@endcomponent
@endcomponent
</div>
</div>
...
@@ -104,7 +104,7 @@
...
@@ -104,7 +104,7 @@
</div>
</div>
<div
class=
"col-12"
>
<div
class=
"col-12"
>
@component('componentes.input', ['label' => 'Complemento'])
@component('componentes.input', ['label' => 'Complemento'])
<input
type=
"text"
class=
"form-control"
name=
"complemento[]"
placeholder=
"Complemento"
required
/>
<input
type=
"text"
id=
"complemento"
class=
"form-control"
name=
"complemento[]"
pattern=
"[A-Za-z]+"
placeholder=
"Complemento"
required
/>
@endcomponent
@endcomponent
</div>
</div>
<div
class=
"col-md-12"
><h5>
Dados do curso
</h5></div>
<div
class=
"col-md-12"
><h5>
Dados do curso
</h5></div>
...
...
resources/views/evento/formulario/proponente.blade.php
View file @
d7b1b4bd
...
@@ -42,8 +42,8 @@
...
@@ -42,8 +42,8 @@
@enderror
@enderror
</div>
</div>
<div
class=
"form-group col-md-4"
>
<div
class=
"form-group col-md-4"
>
<label
for=
"linkGrupo"
>
Link do grupo de pesquisa
</label>
<label
for=
"linkGrupo"
>
Link do grupo de pesquisa
<
span
style=
"color: red; font-weight:bold"
>
*
</span><
/label>
<input
class=
"form-control @error('linkGrupo') is-invalid @enderror"
type=
"
text
"
name=
"linkGrupo"
<input
class=
"form-control @error('linkGrupo') is-invalid @enderror"
type=
"
url
"
name=
"linkGrupo"
value=
"{{old('linkGrupo') !== null ? old('linkGrupo') : (isset($rascunho) ? $rascunho->linkGrupoPesquisa : '')}}"
required
>
value=
"{{old('linkGrupo') !== null ? old('linkGrupo') : (isset($rascunho) ? $rascunho->linkGrupoPesquisa : '')}}"
required
>
<small>
Ex.: http://dgp.cnpq.br/dgp/espelhogrupo/228363
</small>
<small>
Ex.: http://dgp.cnpq.br/dgp/espelhogrupo/228363
</small>
...
...
resources/views/evento/submeterTrabalho.blade.php
View file @
d7b1b4bd
This diff is collapsed.
Click to expand it.
resources/views/layouts/app.blade.php
View file @
d7b1b4bd
...
@@ -18,10 +18,13 @@
...
@@ -18,10 +18,13 @@
<script
src=
"{{ asset('js/jquery-3.4.1.min.js')}}"
></script>
<script
src=
"{{ asset('js/jquery-3.4.1.min.js')}}"
></script>
<script
src=
"{{ asset('js/jquery-mask-plugin.js')}}"
></script>
<script
src=
"{{ asset('js/jquery-mask-plugin.js')}}"
></script>
{{--
<script
src=
"https://cdn.jsdelivr.net/npm/jquery-mask-plugin@1.14.16/dist/jquery.mask.min.js"
></script>
--}}
<link
href=
"{{ asset('css/app.css') }}"
rel=
"stylesheet"
>
<link
href=
"{{ asset('css/app.css') }}"
rel=
"stylesheet"
>
<link
href=
"{{ asset('css/layout.css') }}"
rel=
"stylesheet"
>
<link
href=
"{{ asset('css/layout.css') }}"
rel=
"stylesheet"
>
<style>
<style>
body
{
body
{
background-color
:
#f8fafc
background-color
:
#f8fafc
...
@@ -275,8 +278,9 @@
...
@@ -275,8 +278,9 @@
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"https://code.jquery.com/jquery-3.6.0.min.js"
></script>
{{--
<script
src=
"https://code.jquery.com/jquery-3.6.0.min.js"
></script>
--}}
<script
src=
"https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.2/jquery.validate.min.js"
></script>
<script
src=
"https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.2/jquery.validate.min.js"
></script>
<script
src=
"https://cdn.jsdelivr.net/npm/jquery-mask-plugin@1.14.16/dist/jquery.mask.min.js"
></script>
<script>
<script>
$
(
document
).
ready
(
function
()
{
$
(
document
).
ready
(
function
()
{
$
(
"
#dropdown-login
"
).
on
(
'
click
'
,
function
(
event
){
$
(
"
#dropdown-login
"
).
on
(
'
click
'
,
function
(
event
){
...
...
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