mirror of
https://github.com/Nezumi-2711/foodify-frontend.git
synced 2026-09-23 04:09:52 +00:00
Merge remote-tracking branch 'origin/dat-dev'
This commit is contained in:
@@ -201,7 +201,7 @@
|
||||
|
||||
<ng-template #error_modal>
|
||||
<div class="modal-body text-center">
|
||||
<p>Sai tên tài khoản hoặc mật khẩu. Vui lòng kiểm tra lại !</p>
|
||||
<h5 class="text-dark font-weight-bold mb-4">Sai tên tài khoản hoặc mật khẩu. Vui lòng kiểm tra lại !</h5>
|
||||
<button type="button" class="btn btn-primary" (click)="closeLayer1()">Tiếp tục</button>
|
||||
</div>
|
||||
</ng-template>
|
||||
@@ -209,7 +209,7 @@
|
||||
|
||||
<ng-template #changePasswordCompleted>
|
||||
<div class="modal-body text-center">
|
||||
<p>Thay đổi mật khẩu thành công</p>
|
||||
<h5 class="text-dark font-weight-bold mb-4">Thay đổi mật khẩu thành công</h5>
|
||||
<button type="button" class="btn btn-primary" (click)="backToLogin()"> Đăng nhập ngay
|
||||
</button>
|
||||
</div>
|
||||
|
||||
@@ -154,10 +154,10 @@
|
||||
<div *ngIf="email?.errors?.email">Email không hợp lệ, vui lòng nhập lại</div>
|
||||
</div>
|
||||
<div class="form-button d-flex justify-content-around">
|
||||
<button class="btn btn-primary" type="submit" (click)="sendPasswordResetMail()">Tiếp
|
||||
tục</button>
|
||||
<button type="button" class="btn btn-danger btn-back" [routerLink]="['/auth', 'login']">Quay
|
||||
lại</button>
|
||||
<button class="btn btn-primary" type="submit" (click)="sendPasswordResetMail()">Tiếp
|
||||
tục</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
@@ -175,8 +175,8 @@
|
||||
|
||||
<ng-template #sendMailCompleted>
|
||||
<div class="modal-body text-center">
|
||||
<p>Đã gửi đường dẫn thay đổi mật khẩu đến email của bạn</p>
|
||||
<p>Vui lòng kiểm tra hòm thư của bạn</p>
|
||||
<h5 class="text-dark font-weight-bold mb-4">Đã gửi đường dẫn thay đổi mật khẩu đến email của bạn</h5>
|
||||
<h5 class="text-dark font-weight-bold mb-4">Vui lòng kiểm tra hòm thư của bạn</h5>
|
||||
<!-- <button type="button" class="btn btn-primary" (click)="gmail()">Gmail</button> -->
|
||||
<button type="button" class="btn btn-primary" (click)="closeLayer1()">Đóng</button>
|
||||
</div>
|
||||
@@ -184,7 +184,7 @@
|
||||
|
||||
<ng-template #emailNotExisted>
|
||||
<div class="modal-body text-center">
|
||||
<p>Tài khoản này không tồn tại trong hệ thống. Vui lòng kiểm tra lại địa chỉ email</p>
|
||||
<h5 class="text-dark font-weight-bold mb-4">Tài khoản này không tồn tại trong hệ thống. Vui lòng kiểm tra lại địa chỉ email</h5>
|
||||
<button type="button" class="btn btn-primary" (click)="closeLayer1()">Đóng</button>
|
||||
</div>
|
||||
</ng-template>
|
||||
@@ -360,21 +360,21 @@
|
||||
|
||||
<ng-template #chooseUserImage>
|
||||
<div class="modal-body text-center">
|
||||
<p>Vui lòng chọn 1 ảnh</p>
|
||||
<h5 class="text-dark font-weight-bold mb-4">Vui lòng chọn 1 ảnh</h5>
|
||||
<input class="input-image" type="file" accept="image/*" (change)="onFileSelected($event)" />
|
||||
</div>
|
||||
</ng-template>
|
||||
|
||||
<ng-template #chooseShopImage>
|
||||
<div class="modal-body text-center">
|
||||
<p>Vui lòng chọn 1 ảnh</p>
|
||||
<h5 class="text-dark font-weight-bold mb-4">Vui lòng chọn 1 ảnh</h5>
|
||||
<input class="input-image" type="file" accept="image/*" (change)="onShopFileSelected($event)" />
|
||||
</div>
|
||||
</ng-template>
|
||||
|
||||
<ng-template #createSuccess>
|
||||
<div class="modal-body text-center">
|
||||
<p>Tạo tài khoản thành công. Vui lòng kiểm tra hòm thư để xác thực tài khoản</p>
|
||||
<h5 class="text-dark font-weight-bold mb-4">Tạo tài khoản thành công. Vui lòng kiểm tra hòm thư để xác thực tài khoản</h5>
|
||||
<button type="button" class="btn btn-primary" (click)="continue()">Tiếp tục
|
||||
</button>
|
||||
</div>
|
||||
@@ -382,7 +382,7 @@
|
||||
|
||||
<ng-template #error_modal>
|
||||
<div class="modal-body text-center">
|
||||
<p>{{ errorItem }} đã tồn tại. Vui lòng chọn một {{ errorItem.toLowerCase() }} khác.</p>
|
||||
<h5>{{ errorItem }} đã tồn tại. Vui lòng chọn một {{ errorItem.toLowerCase() }} khác.</h5>
|
||||
<button type="button" class="btn btn-primary" (click)="closeLayer2()">Tiếp tục</button>
|
||||
</div>
|
||||
</ng-template>
|
||||
@@ -22,10 +22,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.input-password-holder {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
@@ -94,7 +94,7 @@
|
||||
</div>
|
||||
<ng-template #confirm_Delete>
|
||||
<div class="modal-body text-center">
|
||||
<p>Bạn chắc chắc xoá sản phẩm này chứ ?</p>
|
||||
<h5 class="text-dark font-weight-bold mb-4">Bạn chắc chắc xoá sản phẩm này chứ ?</h5>
|
||||
<button type="button" class="btn btn-default" (click)="confirm(deleteProductId, success)">Đồng ý
|
||||
</button>
|
||||
<button type="button" class="btn btn-primary" (click)="decline()">Không
|
||||
@@ -105,7 +105,7 @@
|
||||
<!--Delete success -->
|
||||
<ng-template #success>
|
||||
<div class="modal-body text-center">
|
||||
<p>Xoá sản phẩm thành công</p>
|
||||
<h5 class="text-dark font-weight-bold mb-4">Xoá sản phẩm thành công</h5>
|
||||
<button type="button" class="btn btn-primary" (click)="successDelete()">Tiếp tục
|
||||
</button>
|
||||
</div>
|
||||
|
||||
@@ -111,7 +111,7 @@
|
||||
<!--Delete success -->
|
||||
<ng-template #success>
|
||||
<div class="modal-body text-center">
|
||||
<p>Xoá sản phẩm thành công</p>
|
||||
<h5 class="text-dark font-weight-bold mb-4">Xoá sản phẩm thành công</h5>
|
||||
<button type="button" class="btn btn-primary" (click)="successDelete()">Tiếp tục</button>
|
||||
</div>
|
||||
</ng-template>
|
||||
@@ -447,7 +447,7 @@
|
||||
|
||||
<ng-template #chooseUserImage>
|
||||
<div class="modal-body text-center">
|
||||
<p>Vui lòng chọn 1 ảnh</p>
|
||||
<h5 class="text-dark font-weight-bold mb-4">Vui lòng chọn 1 ảnh</h5>
|
||||
<input class="input-image" type="file" accept="image/*" (change)="onFileSelected($event)" />
|
||||
</div>
|
||||
</ng-template>
|
||||
|
||||
Reference in New Issue
Block a user