Commit 7a91fe0e authored by Marcos Roberto Silva's avatar Marcos Roberto Silva

Merge branch 'master' of http://172.28.1.20/marcos.albano/sisage

parents 4901929d 97294fe0
......@@ -1237,6 +1237,14 @@ pre code {
/* max-width: 33.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 {
-webkit-box-flex: 0;
-ms-flex: 0 0 41.66666667%;
......@@ -1249,6 +1257,14 @@ pre code {
flex: 0 0 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 {
-webkit-box-flex: 0;
-ms-flex: 0 0 58.33333333%;
......@@ -1261,6 +1277,7 @@ pre code {
flex: 0 0 66.66666667%;
max-width: 66.66666667%
}
/* Alteração no button ENTER */
.col-md-8_enter {
-webkit-box-flex: 0;
-ms-flex: 0 0 66.66666667%;
......
......@@ -5,6 +5,11 @@
<div class="row justify-content-center">
<div class="col-md-8">
<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-body">
......@@ -18,10 +23,14 @@
@csrf
<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">
<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'))
<span class="invalid-feedback" role="alert">
......@@ -32,7 +41,7 @@
</div>
<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">
{{ __('agendamento.send_password_reset_link') }}
</button>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment