Correção pag login campos de Email, Senha e botões html, tamanho no css.

parent 7578931c
...@@ -649,8 +649,12 @@ pre code { ...@@ -649,8 +649,12 @@ pre code {
display: flex; display: flex;
-ms-flex-wrap: wrap; -ms-flex-wrap: wrap;
flex-wrap: wrap; flex-wrap: wrap;
margin-right: -15px; margin-right: -2px;
/* margin-left: -15px */ margin-left: 0px
}
.row-A {
display: inline block;
} }
.no-gutters { .no-gutters {
...@@ -2116,7 +2120,7 @@ pre code { ...@@ -2116,7 +2120,7 @@ pre code {
.form-control { .form-control {
display: block; display: block;
width: 100%; width: 20rem;
padding: .375rem .75rem; padding: .375rem .75rem;
font-size: .9rem; font-size: .9rem;
line-height: 1.6; line-height: 1.6;
......
...@@ -19,13 +19,12 @@ ...@@ -19,13 +19,12 @@
@csrf @csrf
<div class="form-group row"> <div class="form-group row">
<label for="email" class="col-sm-4 col-form-label text-md-right"></label> <!-- <label for="email" class="col-sm-4 col-form-label text-md-right"></label> -->
<div class="col-md-8_enter offset-md-4_login">
<!-- <div class="col-md-6"> -->
<input id="email" type="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" value="{{ old('email') }}" required autofocus placeholder="{{ __('agendamento.email') }}">
<div class="col-md-6">
<input id="email" type="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" value="{{ old('email') }}" required autofocus placeholder="{{ __('agendamento.email') }}">
@if ($errors->has('email')) @if ($errors->has('email'))
<span class="invalid-feedback" role="alert"> <span class="invalid-feedback" role="alert">
<strong>{{ $errors->first('email') }}</strong> <strong>{{ $errors->first('email') }}</strong>
...@@ -34,12 +33,11 @@ ...@@ -34,12 +33,11 @@
</div> </div>
</div> </div>
<div class="form-group row"> <div class="form-group row">
<label for="password" class="col-md-4 col-form-label text-md-right"></label> <!-- <label for="password" class="col-md-4 col-form-label text-md-right"></label> -->
<div class="col-md-8_enter offset-md-4_login">
<div class="col-md-6"> <!-- <div class="col-md-6"> -->
<input id="password" type="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" name="password" required placeholder="{{ __('agendamento.password') }}"> <input id="password" type="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" name="password" required placeholder="{{ __('agendamento.password') }}">
@if ($errors->has('password')) @if ($errors->has('password'))
<span class="invalid-feedback" role="alert"> <span class="invalid-feedback" role="alert">
<strong>{{ $errors->first('password') }}</strong> <strong>{{ $errors->first('password') }}</strong>
...@@ -79,32 +77,6 @@ ...@@ -79,32 +77,6 @@
</a> </a>
</div> </div>
</div> </div>
<!-- <fieldset class="fielmenuAgendamento-1">
<div style="cursor: pointer" onclick="window.location = '{{route('agendamentos.login')}}'" class="button_meusAgendamento">
<div class="card-body">
</div>
</div>
</fieldset>
<br>
<fieldset class="fielmenuAgendamento-2">
<div style="cursor: pointer" onclick="window.location = '{{route('users.create')}}'" class="button_entregaTitulos">
<div class="card-body">
</div>
</div>
</fieldset>
<fieldset class="fielmenuAgendamento-2">
<div style="cursor: pointer" onclick="window.location = '{{route('password.request')}}'" class="button_contato">
<div class="card-body">
</div>
</div>
</fieldset> -->
</form> </form>
</div> </div>
...@@ -117,4 +89,4 @@ ...@@ -117,4 +89,4 @@
</div> </div>
</div> </div>
</div> </div>
@endsection @endsection
\ No newline at end of file
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