design fix
Showing
src/app/address/address.module.ts
0 → 100644
src/app/address/address.page.html
0 → 100644
src/app/address/address.page.scss
0 → 100644
src/app/address/address.page.spec.ts
0 → 100644
src/app/address/address.page.ts
0 → 100644
src/app/feedback/feedback.module.ts
0 → 100644
src/app/feedback/feedback.page.html
0 → 100644
| <div class="nav_header"> | |||
| <button class="nav_btn nav_back floatLeft" (click)="goBack()"> | |||
| <img src="../assets/Group17_2.png"> | |||
| </button> | |||
| <div class="nav_title floatLeft"> | |||
| <h4>Complaints & Feedback</h4> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <ion-content> | |||
| <div class="feedback_wrapper"> | |||
| <div class="form_div"> | |||
| <div class="row"> | |||
| <p>From</p> | |||
| <input class="form-control" type="text" placeholder="[email protected]"> | |||
| </div> | |||
| <div class="row"> | |||
| <p>To</p> | |||
| <input class="form-control" type="text" placeholder="[email protected]"> | |||
| </div> | |||
| <div class="row"> | |||
| <p>Comments</p> | |||
| <textarea class="form-control" rows="8" placeholder="Type here.."></textarea> | |||
| </div> | |||
| <div class="row"> | |||
| <button class="login_btn">SENT</button> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| </ion-content> | |||
| \ No newline at end of file |
src/app/feedback/feedback.page.scss
0 → 100644
src/app/feedback/feedback.page.spec.ts
0 → 100644
src/app/feedback/feedback.page.ts
0 → 100644
| <div class="nav_header"> | <div class="nav_header"> | ||
| <ion-menu-toggle> | <ion-menu-toggle> | ||
| <button class="nav_btn nav_menu floatLeft"></button> | <button class="nav_btn nav_menu floatLeft"></button> | ||
| </ion-menu-toggle> | </ion-menu-toggle> | ||
| <div class="nav_title floatLeft"> | <div class="nav_title floatLeft"> | ||
| <img src="../../assets/Group [email protected]" /> | <img src="../../assets/Group [email protected]" /> | ||
| </div> | </div> | ||
| <div class="clear"></div> | <div class="clear"></div> | ||
| </div> | </div> | ||
| <ion-content> | <ion-content> | ||
| <div class="profile_wrapper"> | <div class="profile_wrapper"> | ||
| <div class="profile_banner"> | <div class="profile_banner"> | ||
| <div class="profile_circle"> | <div class="profile_circle"> | ||
| <div class="edit"></div> | <div class="edit"></div> | ||
| </div> | </div> | ||
| <h5>{{user && user.name}}</h5> | <h5>{{user && user.name}}</h5> | ||
| <p>LOGOUT</p> | <p (click)="istoggle()">LOGOUT</p> | ||
| </div> | |||
| <div class="account_wrapper"> | |||
| <div class="account_header"> | |||
| <h5 class="floatLeft">ACCOUNT INFORMATION</h5> | |||
| <span class="floatRight" (click)="goToPage('changedetails', user && user)"><img | |||
| src="../../assets/edit.png" /></span> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="row"> | |||
| <ion-row> | |||
| <ion-col class="textLeft p0"> | |||
| <p> | |||
| Name<span>{{user && phoneVerified? "Verified": "Not Verified yet"}}</span> | |||
| </p> | |||
| </ion-col> | |||
| <ion-col class="textRight p0"> | |||
| <h6>{{user && user.name}}</h6> | |||
| </ion-col> | |||
| </ion-row> | |||
| </div> | |||
| <div class="row"> | |||
| <ion-row> | |||
| <ion-col class="textLeft p0"> | |||
| <p> | |||
| Email<span>{{user && emailVerified? "Verified": "Not Verified yet"}}</span> | |||
| </p> | |||
| </ion-col> | |||
| <ion-col class="textRight p0"> | |||
| <h6>{{user && user.emailId}}</h6> | |||
| </ion-col> | |||
| </ion-row> | |||
| </div> | |||
| <hr /> | |||
| <ion-row> | |||
| <ion-col class="textLeft p0"> | |||
| <p>Wishlist</p> | |||
| </ion-col> | |||
| <ion-col class="textRight p0"> | |||
| <h6>(3)</h6> | |||
| </ion-col> | |||
| </ion-row> | |||
| <hr /> | |||
| <ion-row> | |||
| <ion-col class="textLeft p0"> | |||
| <p>Address</p> | |||
| </ion-col> | |||
| <ion-col class="textRight p0"> | |||
| <h6>(1)</h6> | |||
| </ion-col> | |||
| </ion-row> | |||
| <hr /> | |||
| <ion-row> | |||
| <ion-col class="textLeft p0"> | |||
| <p>My Cards</p> | |||
| </ion-col> | |||
| <ion-col class="textRight p0"> | |||
| <h6> | |||
| <ion-icon name="arrow-forward"></ion-icon> | |||
| </h6> | |||
| </ion-col> | |||
| </ion-row> | |||
| <hr /> | |||
| <ion-row> | |||
| <ion-col class="textLeft p0"> | |||
| <p>My Order</p> | |||
| </ion-col> | |||
| <ion-col class="textRight p0"> | |||
| <h6> | |||
| <ion-icon name="arrow-forward"></ion-icon> | |||
| </h6> | |||
| </ion-col> | |||
| </ion-row> | |||
| <hr /> | |||
| <ion-row> | |||
| <ion-col class="textLeft p0"> | |||
| <p>Currency</p> | |||
| </ion-col> | |||
| <ion-col class="textRight p0"> | |||
| <h6> | |||
| <span>AUD</span> | |||
| </h6> | |||
| </ion-col> | |||
| </ion-row> | |||
| </div> | |||
| </div> | </div> | ||
| <div class="account_wrapper"> | <div class="logout-pop-wrapper" *ngIf="isShow" [@slideInOut]> | ||
| <div class="account_header"> | <div class="logout_inner"> | ||
| <h5 class="floatLeft">ACCOUNT INFORMATION</h5> | <h4>Logout</h4> | ||
| <span | <p>Are you sure to Logout ?</p> | ||
| class="floatRight" | <div class="logout_footer"> | ||
| (click)="goToPage('changedetails', user && user)" | |||
| ><img src="../../assets/edit.png" | <button class="btn-cancel floatLeft" (click)="istoggle();">Cancel</button> | ||
| /></span> | <button class="btn-logout floatRight" (click)="istoggle()">Logout</button> | ||
| <div class="clear"></div> | |||
| </div> | |||
| <div class="row"> | <div class="clear"></div> | ||
| <ion-row> | </div> | ||
| <ion-col class="textLeft p0"> | </div> | ||
| <p> | |||
| Name<span | |||
| >{{user && phoneVerified? "Verified": "Not Verified yet"}}</span | |||
| > | |||
| </p> | |||
| </ion-col> | |||
| <ion-col class="textRight p0"> | |||
| <h6>{{user && user.name}}</h6> | |||
| </ion-col> | |||
| </ion-row> | |||
| </div> | |||
| <div class="row"> | |||
| <ion-row> | |||
| <ion-col class="textLeft p0"> | |||
| <p> | |||
| Email<span | |||
| >{{user && emailVerified? "Verified": "Not Verified yet"}}</span | |||
| > | |||
| </p> | |||
| </ion-col> | |||
| <ion-col class="textRight p0"> | |||
| <h6>{{user && user.emailId}}</h6> | |||
| </ion-col> | |||
| </ion-row> | |||
| </div> | |||
| <hr /> | |||
| <ion-row> | |||
| <ion-col class="textLeft p0"> | |||
| <p>Wishlist</p> | |||
| </ion-col> | |||
| <ion-col class="textRight p0"> | |||
| <h6>(3)</h6> | |||
| </ion-col> | |||
| </ion-row> | |||
| <hr /> | |||
| <ion-row> | |||
| <ion-col class="textLeft p0"> | |||
| <p>Address</p> | |||
| </ion-col> | |||
| <ion-col class="textRight p0"> | |||
| <h6>(1)</h6> | |||
| </ion-col> | |||
| </ion-row> | |||
| <hr /> | |||
| <ion-row> | |||
| <ion-col class="textLeft p0"> | |||
| <p>My Cards</p> | |||
| </ion-col> | |||
| <ion-col class="textRight p0"> | |||
| <h6> | |||
| <ion-icon name="arrow-forward"></ion-icon> | |||
| </h6> | |||
| </ion-col> | |||
| </ion-row> | |||
| <hr /> | |||
| <ion-row> | |||
| <ion-col class="textLeft p0"> | |||
| <p>My Order</p> | |||
| </ion-col> | |||
| <ion-col class="textRight p0"> | |||
| <h6> | |||
| <ion-icon name="arrow-forward"></ion-icon> | |||
| </h6> | |||
| </ion-col> | |||
| </ion-row> | |||
| <hr /> | |||
| <ion-row> | |||
| <ion-col class="textLeft p0"> | |||
| <p>Currency</p> | |||
| </ion-col> | |||
| <ion-col class="textRight p0"> | |||
| <h6> | |||
| <span>AUD</span> | |||
| </h6> | |||
| </ion-col> | |||
| </ion-row> | |||
| </div> | </div> | ||
| </div> | </ion-content> | ||
| </ion-content> | \ No newline at end of file |
src/assets/delete.png
0 → 100644
1.36 KB
src/assets/heart.png
0 → 100644
1.01 KB
src/assets/img-list.png
0 → 100644
125 KB
src/assets/radio-checked.png
0 → 100644
1.43 KB
src/assets/radio.png
0 → 100644
1.54 KB
src/assets/wishlist.png
0 → 100644
12.1 KB