Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sisage
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
sisage
Commits
97294fe0
Commit
97294fe0
authored
Jan 24, 2021
by
Marcos Vinicius Felix De Sousa da Silva
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Alteração no campo Reset Senha, alinhamento dos campos, coloquei o placeholder com o Email.
parent
20a5e93d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
3 deletions
+29
-3
app.css
public/css/app.css
+17
-0
email.blade.php
resources/views/auth/passwords/email.blade.php
+12
-3
No files found.
public/css/app.css
View file @
97294fe0
...
@@ -1237,6 +1237,14 @@ pre code {
...
@@ -1237,6 +1237,14 @@ pre code {
/* max-width: 33.33333333% */
/* max-width: 33.33333333% */
max-width
:
25.33333333%
max-width
:
25.33333333%
}
}
/* Elteração no campo Email Reset */
.col-md-4-A
{
-webkit-box-flex
:
0
;
-ms-flex
:
0
0
33.33333333%
;
flex
:
0
0
33.33333333%
;
/* max-width: 33.33333333% */
max-width
:
25.333%
;
}
.col-md-5
{
.col-md-5
{
-webkit-box-flex
:
0
;
-webkit-box-flex
:
0
;
-ms-flex
:
0
0
41.66666667%
;
-ms-flex
:
0
0
41.66666667%
;
...
@@ -1249,6 +1257,14 @@ pre code {
...
@@ -1249,6 +1257,14 @@ pre code {
flex
:
0
0
50%
;
flex
:
0
0
50%
;
max-width
:
50%
max-width
:
50%
}
}
/* Alteração no campo de reset e alter no html do mesmo. */
.col-md-6-A
{
-webkit-box-flex
:
0
;
-ms-flex
:
0
0
50%
;
flex
:
0
0
50%
;
max-width
:
50%
;
text-align
:
center
;
}
.col-md-7
{
.col-md-7
{
-webkit-box-flex
:
0
;
-webkit-box-flex
:
0
;
-ms-flex
:
0
0
58.33333333%
;
-ms-flex
:
0
0
58.33333333%
;
...
@@ -1261,6 +1277,7 @@ pre code {
...
@@ -1261,6 +1277,7 @@ pre code {
flex
:
0
0
66.66666667%
;
flex
:
0
0
66.66666667%
;
max-width
:
66.66666667%
max-width
:
66.66666667%
}
}
/* Alteração no button ENTER */
.col-md-8_enter
{
.col-md-8_enter
{
-webkit-box-flex
:
0
;
-webkit-box-flex
:
0
;
-ms-flex
:
0
0
66.66666667%
;
-ms-flex
:
0
0
66.66666667%
;
...
...
resources/views/auth/passwords/email.blade.php
View file @
97294fe0
...
@@ -5,6 +5,11 @@
...
@@ -5,6 +5,11 @@
<
div
class
=
"row justify-content-center"
>
<
div
class
=
"row justify-content-center"
>
<
div
class
=
"col-md-8"
>
<
div
class
=
"col-md-8"
>
<
div
class
=
"card"
>
<
div
class
=
"card"
>
<
div
class
=
"imaLogos"
>
<
img
src
=
"{!! asset('img/Logo governo_150.png') !!}"
>
</
div
>
<
div
class
=
"card-header"
>
{{
__
(
'agendamento.reset_password'
)
}}
</
div
>
<
div
class
=
"card-header"
>
{{
__
(
'agendamento.reset_password'
)
}}
</
div
>
<
div
class
=
"card-body"
>
<
div
class
=
"card-body"
>
...
@@ -18,10 +23,14 @@
...
@@ -18,10 +23,14 @@
@
csrf
@
csrf
<
div
class
=
"form-group row"
>
<
div
class
=
"form-group row"
>
<
label
for
=
"email"
class
=
"col-md-4 col-form-label text-md-right"
>
{{
__
(
'agendamento.email'
)
}}
</
label
>
<!--
<
label
for
=
"email"
class
=
"col-md-4 col-form-label text-md-right"
>
{{
__
(
'agendamento.email'
)
}}
</
label
>
-->
<!--
Alteração
da
label
-->
<
label
for
=
"email"
class
=
"col-md-4-A col-form-label text-md-right"
></
label
>
<
div
class
=
"col-md-6"
>
<
div
class
=
"col-md-6"
>
<
input
id
=
"email"
type
=
"email"
class
=
"form-control{{
$errors->has
('email') ? ' is-invalid' : '' }}"
name
=
"email"
value
=
"{{ old('email') }}"
required
>
<
input
id
=
"email"
type
=
"email"
class
=
"form-control{{
$errors->has
('email') ? ' is-invalid' : '' }}"
name
=
"email"
placeholder
=
"{{ __('agendamento.email') }}"
value
=
"{{ old('email') }}"
required
>
@
if
(
$errors
->
has
(
'email'
))
@
if
(
$errors
->
has
(
'email'
))
<
span
class
=
"invalid-feedback"
role
=
"alert"
>
<
span
class
=
"invalid-feedback"
role
=
"alert"
>
...
@@ -32,7 +41,7 @@
...
@@ -32,7 +41,7 @@
</
div
>
</
div
>
<
div
class
=
"form-group row mb-0"
>
<
div
class
=
"form-group row mb-0"
>
<
div
class
=
"col-md-6 offset-md-4"
>
<
div
class
=
"col-md-6
-A
offset-md-4"
>
<
button
type
=
"submit"
class
=
"btn btn-primary"
>
<
button
type
=
"submit"
class
=
"btn btn-primary"
>
{{
__
(
'agendamento.send_password_reset_link'
)
}}
{{
__
(
'agendamento.send_password_reset_link'
)
}}
</
button
>
</
button
>
...
...
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