-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'cbrelease-4.0.1' of https://github.com/sunbird-cb/sunbi…
…rd-cb-portal into cbrelease-4.0.1
- Loading branch information
Showing
16 changed files
with
169 additions
and
29 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
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
19 changes: 19 additions & 0 deletions
19
src/app/routes/public/public-contacthome/public-contacthome.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,19 @@ | ||
<div class="box w-full"> | ||
<ws-widget-btn-page-back [widgetData]="{ url: 'home',titles:[{title:'Contact Us',url:'none'}] }" > | ||
</ws-widget-btn-page-back> | ||
</div> | ||
<div class="container-balanced"> | ||
<div class="flex flex-1 custom faq_main_box"> | ||
<div class="flex-3"> | ||
<mat-card class="padding-xl"> | ||
<!-- <h2 class="flex mat-display-1 main_title_text margin-bottom-xl">Contact Us</h2> --> | ||
<p class="mat-title">For any technical issues please contact,</p> | ||
<p class="mat-body-1">Email: <a href="mailto:[email protected]"><b>[email protected]</b></a></p> | ||
<p>Helpdesk: <a href="https://servicedesk.nic.in/" target="blank"><b>servicedesk.nic.in</b></a></p> | ||
<p class="mat-body-1 margin-bottom-m">Call: <mat-icon class="custom-phone">phone</mat-icon><b> 1800 111 555</b></p> | ||
<p class="mat-body-1 margin-top-xl margin-bottom-m">To know more click <a href="https://dopttrg.nic.in/igotmk/">here.</a></p> | ||
</mat-card> | ||
</div> | ||
</div> | ||
</div> | ||
|
46 changes: 46 additions & 0 deletions
46
src/app/routes/public/public-contacthome/public-contacthome.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,46 @@ | ||
@import "ws-vars"; | ||
@import "ws-common"; | ||
@import 'ws-mixins'; | ||
|
||
.container-balanced { | ||
max-width: 1202px; | ||
margin-left: auto !important; | ||
margin-right: auto !important; | ||
} | ||
.faq_main_box{ | ||
padding: 45px 8px 0 8px; | ||
|
||
@include breakpoint-xs { | ||
padding: 45px 0; | ||
} | ||
} | ||
h2.main_title_text { | ||
font-weight: 600!important; | ||
} | ||
.full_width_box { | ||
width: 100%; | ||
} | ||
.flex-4 { | ||
flex: 4; | ||
} | ||
|
||
.custom { | ||
@include breakpoint-xs { | ||
flex-direction: column; | ||
} | ||
|
||
@include breakpoint-s { | ||
flex-direction: column; | ||
} | ||
} | ||
.flex-3 { | ||
flex: 3; | ||
} | ||
|
||
.custom-phone { | ||
height: 16px; | ||
width: 22px; | ||
font-size: 20px; | ||
line-height: 0.6 !important; | ||
vertical-align: middle; | ||
} |
21 changes: 21 additions & 0 deletions
21
src/app/routes/public/public-contacthome/public-contacthome.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,21 @@ | ||
import { Component, OnInit } from '@angular/core' | ||
import { ConfigurationsService, NsPage } from '@sunbird-cb/utils' | ||
|
||
@Component({ | ||
selector: 'ws-public-contacthome', | ||
templateUrl: './public-contacthome.component.html', | ||
styleUrls: ['./public-contacthome.component.scss'], | ||
}) | ||
export class PublicContacthomeComponent implements OnInit { | ||
contactUsMail = '' | ||
pageNavbar: Partial<NsPage.INavBackground> = this.configSvc.pageNavBar | ||
|
||
constructor(private configSvc: ConfigurationsService) {} | ||
|
||
ngOnInit() { | ||
if (this.configSvc.instanceConfig) { | ||
this.contactUsMail = this.configSvc.instanceConfig.mailIds.contactUs | ||
} | ||
} | ||
|
||
} |
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