-
Notifications
You must be signed in to change notification settings - Fork 3
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
9ec4bcc
commit 87ce5c2
Showing
17 changed files
with
317 additions
and
105 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,3 +35,7 @@ section>p{ | |
transform: translateY(-10%); | ||
} | ||
|
||
.courses_component { | ||
padding: 0% 0% 50% 0%; | ||
} | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.profile_component { | ||
padding: 0% 0% 50% 0%; | ||
} |
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,52 @@ | ||
<div class="profile_component"> | ||
<header class="p-3 mb-3 border-bottom bg-color light"> | ||
<div class="container"> | ||
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start"> | ||
<button class="border-0 bg-primary px-2 mx-2 rounded">Your EXP | ||
<span class="fa fa-bolt"></span> | ||
</button> | ||
|
||
<ul class="nav col-12 col-lg-auto me-lg-auto mb-2 justify-content-center mb-md-0"> | ||
<li><a href="#" class="nav-link px-2 link-dark">Courses</a></li> | ||
<li><a href="#" class="nav-link px-2 link-dark">Practice</a></li> | ||
<li><a href="#" class="nav-link px-2 link-dark">Resources</a></li> | ||
</ul> | ||
|
||
<p class="col-12 col-lg-auto mb-3 mb-lg-0 me-lg-3 text-center">username</p> | ||
|
||
<div class="user_profile"> | ||
<a routerLink="/" class="text-decoration-none" id="user"> | ||
<img src="https://img.freepik.com/free-vector/businessman-character-avatar-isolated_24877-60111.jpg" | ||
alt="image" width="32" height="32" class="rounded-circle"> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-sm-12 col-md-2 nav_content mt-0"> | ||
<main class="container"> | ||
<nav id="navbar"> | ||
<section class="mt-4 text-center"> | ||
<h5 class="">My Stuff</h5> | ||
<ul class="list-unstyled"> | ||
<li><a class="nav-link my-3 p-3" routerLink="/courses">Courses</a></li> | ||
</ul> | ||
</section> | ||
<section class="text-center"> | ||
<h5>My Account</h5> | ||
<ul class="list-unstyled"> | ||
<li><a class="nav-link my-3 p-3" routerLink="/progress">Progress</a></li> | ||
<li><a class="nav-link my-3 p-3" routerLink="/Profile">Profile</a></li> | ||
<li><a class="nav-link my-3 p-3" routerLink="/teachers">Teachers</a></li> | ||
</ul> | ||
</section> | ||
</nav> | ||
</main> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
</div> |
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,23 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { ProfileComponent } from './profile.component'; | ||
|
||
describe('ProfileComponent', () => { | ||
let component: ProfileComponent; | ||
let fixture: ComponentFixture<ProfileComponent>; | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
declarations: [ProfileComponent] | ||
}) | ||
.compileComponents(); | ||
|
||
fixture = TestBed.createComponent(ProfileComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
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,10 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-profile', | ||
templateUrl: './profile.component.html', | ||
styleUrl: './profile.component.css' | ||
}) | ||
export class ProfileComponent { | ||
|
||
} |
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,10 @@ | ||
select{ | ||
height: 40px; | ||
width:90%; | ||
border-radius:8px; | ||
text-align: center; | ||
margin: 10px; | ||
} | ||
.progress_component{ | ||
padding: 0% 0% 50% 0%; | ||
} |
Oops, something went wrong.