-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53e6d9a
commit ef61ee3
Showing
6 changed files
with
116 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 77 additions & 0 deletions
77
libs/mix-share/src/components/user-profile-dialof/user-profile-dialof.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<div class="mix-dialog h-100"> | ||
<div class="container-fluid h-100"> | ||
<div class="row h-100"> | ||
<div class="col-md-3 border-right" | ||
style="background-color: #071a2b; color: #fff"> | ||
<div class="d-flex flex-column align-items-center text-center p-3 py-5"> | ||
<img class="rounded-circle mt-5" | ||
src="https://st3.depositphotos.com/15648834/17930/v/600/depositphotos_179308454-stock-illustration-unknown-person-silhouette-glasses-profile.jpg" | ||
width="150px" | ||
height="150px"> | ||
<span class="font-weight-bold text-l mt-2">Mr. User Name</span> | ||
</div> | ||
</div> | ||
|
||
<div class="col-md-5 p-4 pb-2 border-right"> | ||
<div class="p-3 d-flex flex-column h-100"> | ||
<div class="d-flex justify-content-between align-items-center mb-3"> | ||
<h4 class="text-right">Profile Settings</h4> | ||
</div> | ||
<div class="row mt-2"> | ||
<div class="col-md-6"> | ||
<label class="text-sub text-500 mb-1">Name</label> | ||
<mix-input placeHolder="first name"></mix-input> | ||
</div> | ||
<div class="col-md-6"> | ||
<label class="text-sub text-500 mb-1">Surname</label> | ||
<mix-input placeHolder="sur name"></mix-input> | ||
</div> | ||
<div class="col-md-12 mt-3"> | ||
<label class="text-sub text-500 mb-1">Mobile Number</label> | ||
<mix-input placeHolder="enter phone number"></mix-input> | ||
</div> | ||
<div class="col-md-12 mt-3"> | ||
<label class="text-sub text-500 mb-1">Email ID</label> | ||
<mix-input placeHolder="enter email id"></mix-input> | ||
</div> | ||
<div class="col-md-12 mt-3"> | ||
<label class="text-sub text-500 mb-1">Education</label> | ||
<mix-input placeHolder="education"></mix-input> | ||
</div> | ||
<div class="col-md-6 mt-3"> | ||
<label class="text-sub text-500 mb-1">Country</label> | ||
<mix-input placeHolder="country" | ||
value> </mix-input> | ||
</div> | ||
<div class="col-md-6 mt-3"> | ||
<label class="text-sub text-500 mb-1">State/Region</label> | ||
<mix-input placeHolder="state" | ||
value> </mix-input> | ||
</div> | ||
</div> | ||
<div class="mt-auto d-flex gap-2 justify-content-end"> | ||
<mix-button type="outline" | ||
(click)="dialogRef.close()"> | ||
Cancel | ||
</mix-button> | ||
|
||
<mix-button (click)="dialogRef.close()"> Save Profile </mix-button> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-4 p-4"> | ||
<div class="p-3 pt-5"> | ||
<div class="col-md-12"> | ||
<label class="text-sub text-500 mb-1">Experience in Designing</label> | ||
<mix-input placeHolder="experience"> </mix-input> | ||
</div> | ||
<br> | ||
<div class="col-md-12"> | ||
<label class="text-sub text-500 mb-1">Additional Details</label> | ||
<mix-input placeHolder="additional details"> </mix-input> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
8 changes: 8 additions & 0 deletions
8
libs/mix-share/src/components/user-profile-dialof/user-profile-dialof.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.border-right { | ||
border-right: 1px solid var(--border-color-default); | ||
} | ||
|
||
:host { | ||
display: block; | ||
height: 100%; | ||
} |
18 changes: 18 additions & 0 deletions
18
libs/mix-share/src/components/user-profile-dialof/user-profile-dialof.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { CommonModule } from '@angular/common'; | ||
import { ChangeDetectionStrategy, Component, inject } from '@angular/core'; | ||
import { MixButtonComponent } from '@mixcore/ui/button'; | ||
import { MixInputComponent } from '@mixcore/ui/input'; | ||
import { DialogRef } from '@ngneat/dialog'; | ||
|
||
@Component({ | ||
selector: 'user-profile-dialof', | ||
standalone: true, | ||
imports: [CommonModule, MixInputComponent, MixButtonComponent], | ||
templateUrl: './user-profile-dialof.component.html', | ||
styleUrl: './user-profile-dialof.component.scss', | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
}) | ||
export class UserProfileDialofComponent { | ||
public static windowClass = 'top-align-modal'; | ||
public dialogRef = inject(DialogRef); | ||
} |
ef61ee3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
mix-portal-angular – ./
mix-portal-angular-git-master-mixcore.vercel.app
mix-portal-angular.vercel.app
mix-portal-angular-mixcore.vercel.app
admin.mixcore.dev
studio.mixcore.net