feat: Implement sales order management, customer and address creation modals, and a login page with new image assets.
This commit is contained in:
@@ -96,27 +96,27 @@
|
||||
}
|
||||
|
||||
.is-text {
|
||||
/* Auto layout */
|
||||
/* Auto layout */
|
||||
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: flex-start;
|
||||
padding: 0px;
|
||||
align-items: center;
|
||||
|
||||
position: static;
|
||||
width: 408px;
|
||||
height: 48px;
|
||||
left: 0px;
|
||||
top: 66px;
|
||||
|
||||
/* Inside auto layout */
|
||||
|
||||
flex: none;
|
||||
order: 2;
|
||||
align-self: stretch;
|
||||
flex-grow: 0;
|
||||
margin: 10px 0px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: flex-start;
|
||||
padding: 0px;
|
||||
align-items: center;
|
||||
|
||||
position: static;
|
||||
width: 408px;
|
||||
height: 48px;
|
||||
left: 0px;
|
||||
top: 66px;
|
||||
|
||||
/* Inside auto layout */
|
||||
|
||||
flex: none;
|
||||
order: 2;
|
||||
align-self: stretch;
|
||||
flex-grow: 0;
|
||||
margin: 10px 0px;
|
||||
}
|
||||
|
||||
|
||||
@@ -175,7 +175,7 @@
|
||||
.ls-link-forgot-password {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
/* Tablets */
|
||||
@@ -203,4 +203,4 @@
|
||||
.cs-login {
|
||||
max-width: 500px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4,7 +4,7 @@
|
||||
<div class="col-12 col-sm-8 col-md-6 col-xl-4">
|
||||
<div class="cs-login">
|
||||
<div class="text-center">
|
||||
<span class="ls-saudacao">Bem-vindo(a),</span>
|
||||
<span class="ls-saudacao">Bem-vindo(a), </span>
|
||||
<span class="ls-plataforma">SIMPLIFIQUE</span>
|
||||
</div>
|
||||
<form class="fs-login" [formGroup]="form" (keydown.enter)="submitForm()">
|
||||
@@ -29,13 +29,8 @@
|
||||
<kendo-textbox class="k-textbox is-text" type="password" placeholder="Informe sua senha" #password
|
||||
formControlName="password">
|
||||
<ng-template kendoTextBoxSuffixTemplate>
|
||||
<button
|
||||
kendoButton
|
||||
look="clear"
|
||||
[icon]="passwordVisible ? 'eye-slash' : 'eye'"
|
||||
(click)="toggleVisibility()"
|
||||
type="button"
|
||||
></button>
|
||||
<button kendoButton look="clear" [icon]="passwordVisible ? 'eye-slash' : 'eye'"
|
||||
(click)="toggleVisibility()" type="button"></button>
|
||||
</ng-template>
|
||||
</kendo-textbox>
|
||||
</label>
|
||||
|
||||
@@ -75,7 +75,7 @@ export class LoginComponent implements OnInit, AfterViewInit {
|
||||
this.authService.setDataInLocalStorage('user', JSON.stringify(res.data));
|
||||
this.authService.setDataInLocalStorage('token', res.data.token);
|
||||
localStorage.removeItem('cart');
|
||||
this.router.navigate(['/menu']);
|
||||
this.router.navigate(['/sales/menu']);
|
||||
} else {
|
||||
this.loadingIcon = '';
|
||||
this.showErrorMessage(res.message);
|
||||
|
||||
Reference in New Issue
Block a user