Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
upsmf-examinations-module
Commits
9b076474
Unverified
Commit
9b076474
authored
1 year ago
by
Arun Nair
Committed by
GitHub
1 year ago
Browse files
Options
Download
Plain Diff
Merge pull request #1 from arun1205/header
Adding header
parents
57ec1af2
e4cffbc5
master
bulk-upload-csv
examCycle
examcycleValiation
further-features-generic-table
generic-table-creation-and-features
No related merge requests found
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
src/app/modules/manage-exams-module/manage-exams-module-routing.module.ts
+4
-0
...manage-exams-module/manage-exams-module-routing.module.ts
src/app/modules/shared/components/header/header.component.html
+10
-0
...pp/modules/shared/components/header/header.component.html
src/app/modules/shared/components/header/header.component.scss
+18
-0
...pp/modules/shared/components/header/header.component.scss
src/app/modules/shared/components/header/header.component.spec.ts
+23
-0
...modules/shared/components/header/header.component.spec.ts
src/app/modules/shared/components/header/header.component.ts
+10
-0
src/app/modules/shared/components/header/header.component.ts
src/app/modules/shared/shared.module.ts
+5
-2
src/app/modules/shared/shared.module.ts
src/assets/images/sunbird_logo.png
+0
-0
src/assets/images/sunbird_logo.png
with
70 additions
and
2 deletions
+70
-2
src/app/modules/manage-exams-module/manage-exams-module-routing.module.ts
+
4
−
0
View file @
9b076474
...
...
@@ -2,12 +2,16 @@ import { NgModule } from '@angular/core';
import
{
RouterModule
,
Routes
}
from
'
@angular/router
'
;
import
{
ExamsTableComponent
}
from
'
./components/exams-table/exams-table.component
'
;
import
{
HeaderComponent
}
from
'
../shared/components/header/header.component
'
;
const
routes
:
Routes
=
[
{
path
:
'
manage-exams
'
,
component
:
ExamsTableComponent
,
pathMatch
:
'
full
'
,
},
{
path
:
'
header
'
,
component
:
HeaderComponent
,
pathMatch
:
'
full
'
,
},
];
@
NgModule
({
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/shared/components/header/header.component.html
0 → 100644
+
10
−
0
View file @
9b076474
<nav
class=
"navbar navbar-expand-lg navbar-light bg-light"
>
<div
class=
"header-container"
>
<div>
<img
src=
"../../assets/images/sunbird_logo.png"
alt=
"UPSMF logo"
>
</div>
<div>
<button>
GJ
</button>
</div>
</div>
</nav>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/app/modules/shared/components/header/header.component.scss
0 → 100644
+
18
−
0
View file @
9b076474
.header-container
{
display
:
flex
;
justify-content
:
space-between
;
align-items
:
center
;
}
img
{
margin-left
:
12rem
;
width
:
17rem
;
}
button
{
margin-left
:
72rem
;
background-color
:
forestgreen
;
border-radius
:
8px
;
border
:
none
;
color
:
white
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/app/modules/shared/components/header/header.component.spec.ts
0 → 100644
+
23
−
0
View file @
9b076474
import
{
ComponentFixture
,
TestBed
}
from
'
@angular/core/testing
'
;
import
{
HeaderComponent
}
from
'
./header.component
'
;
describe
(
'
HeaderComponent
'
,
()
=>
{
let
component
:
HeaderComponent
;
let
fixture
:
ComponentFixture
<
HeaderComponent
>
;
beforeEach
(
async
()
=>
{
await
TestBed
.
configureTestingModule
({
declarations
:
[
HeaderComponent
]
})
.
compileComponents
();
fixture
=
TestBed
.
createComponent
(
HeaderComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'
should create
'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
This diff is collapsed.
Click to expand it.
src/app/modules/shared/components/header/header.component.ts
0 → 100644
+
10
−
0
View file @
9b076474
import
{
Component
}
from
'
@angular/core
'
;
@
Component
({
selector
:
'
app-header
'
,
templateUrl
:
'
./header.component.html
'
,
styleUrls
:
[
'
./header.component.scss
'
]
})
export
class
HeaderComponent
{
}
This diff is collapsed.
Click to expand it.
src/app/modules/shared/shared.module.ts
+
5
−
2
View file @
9b076474
...
...
@@ -3,10 +3,12 @@ import { CommonModule } from '@angular/common';
import
{
TableModule
}
from
'
primeng/table
'
;
import
{
SharedTableComponent
}
from
'
./components/shared-table/shared-table.component
'
;
import
{
HeaderComponent
}
from
'
./components/header/header.component
'
;
@
NgModule
({
declarations
:
[
SharedTableComponent
SharedTableComponent
,
HeaderComponent
],
imports
:
[
CommonModule
,
...
...
@@ -14,7 +16,8 @@ import { SharedTableComponent } from './components/shared-table/shared-table.com
],
exports
:
[
SharedTableComponent
SharedTableComponent
,
HeaderComponent
]
})
export
class
SharedModule
{
}
This diff is collapsed.
Click to expand it.
src/assets/images/sunbird_logo.png
0 → 100644
+
0
−
0
View file @
9b076474
34.3 KB
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets