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