fix: inclui novos estilos e ajustes.
This commit is contained in:
parent
4d6d21da6f
commit
f215773be4
|
|
@ -126,8 +126,8 @@ @layer components {
|
|||
}
|
||||
|
||||
.form-class {
|
||||
@apply flex flex-col gap-4;
|
||||
@apply mb-10;
|
||||
@apply flex flex-col gap-4 p-3;
|
||||
@apply mb-10 w-1/5;
|
||||
}
|
||||
|
||||
.form-input-class {
|
||||
|
|
@ -135,7 +135,7 @@ @layer components {
|
|||
}
|
||||
|
||||
.form-button-class {
|
||||
@apply bg-blue-500 text-white rounded-md p-2 cursor-pointer hover:bg-blue-800;
|
||||
@apply bg-blue-500 text-white rounded-md p-2 cursor-pointer hover:bg-blue-800 w-1/2;
|
||||
}
|
||||
|
||||
.container h1 {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
@section('title', 'Login')
|
||||
@section('content')
|
||||
|
||||
<div class="container">
|
||||
<div class="container">
|
||||
<div class="container-title">
|
||||
|
||||
</div>
|
||||
|
|
@ -22,11 +22,16 @@
|
|||
|
||||
@endif
|
||||
|
||||
<form action="{{ route('login-post') }}" method="POST">
|
||||
<form action="{{ route('login-post') }}" class="form-class" method="POST">
|
||||
@csrf
|
||||
<input type="email" name="email" placeholder="E-mail">
|
||||
<input type="password" name="password" placeholder="Senha">
|
||||
<button type="submit">Login</button>
|
||||
<input class="form-input-class" type="email" name="email" placeholder="E-mail">
|
||||
<input class="form-input-class" type="password" name="password" placeholder="Senha">
|
||||
<div class="flex justify-center">
|
||||
<button class="form-button-class" type="submit">Login</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="forget-password">
|
||||
<a href="#">Esqueceu sua senha?</a>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
Loading…
Reference in New Issue