-
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 pull request #482 from sunbird-cb/signout
Signout
- Loading branch information
Showing
6 changed files
with
82 additions
and
5 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
18 changes: 18 additions & 0 deletions
18
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,18 @@ | ||
<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> | ||
<!-- <h5 class="flex mat-display-1 margin-top-xl margin-bottom-xl">We would love to hear from you!</h5> --> | ||
<p>Send us a mail to <a href="mailto:[email protected]"><b>[email protected]</b></a>. Our representatives will reach out to you at the earliest.</p> | ||
<p>You may contact us on <b>1800 111 555</b> or visit our <a href="https://servicedesk.nic.in/" target="blank">service desk</a> for more details.</p> | ||
<p class="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> | ||
|
37 changes: 37 additions & 0 deletions
37
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,37 @@ | ||
@import "ws-vars"; | ||
@import "ws-common"; | ||
|
||
.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; | ||
} |
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 | ||
} | ||
} | ||
|
||
} |