changes by suren

This commit is contained in:
sriram-at-840620226347 2019-10-09 14:51:19 +05:30
parent b91246ddd2
commit 14f65a1eea
3 changed files with 5 additions and 4 deletions

View File

@ -152,14 +152,14 @@
<!--</mat-card-title> -->
<!-- </mat-card-header> -->
<mat-card-content>
<p class="quote" style="margin-top:4px;text-align: center">&#8221;Alone we can do so little, together we can do so much <br/>- Hellen Keller&#8221;</p>
<p class="quote" style="margin-top:4px;text-align: center">&#8221;Alone we can do so little, together we can do so much&#8221; <br/>- Hellen Keller</p>
<h5 class="text-center"> Contribute to State School Development Fund</h5>
<div fxLayout="column" fxLayoutAlign="start stretch">
<!-- <div fxLayout fxLayout="row" fxLayout.xs="column" fxLayoutGap.xs="0"> -->
<div class="text-center" fxFlex="100%" fxFlex.xs="100" fxFlex.sm="100" fxFlex.md="40" fxFlex.lg="100" fxFlex.xl="100">
<mat-form-field appearance="outline" style="width: 70%;text-align: center;">
<input matInput type="tel" placeholder="Amount" [(ngModel)]="general_devlop_amt" maxlength="10" (change)="dev_fund_change($event.target.value)">
<input matInput type="tel" placeholder="Amount" [(ngModel)]="general_devlop_amt" maxlength="10" (change)="dev_fund_change($event.target.value)" onkeypress="return event.charCode >= 48 && event.charCode <= 57">
</mat-form-field>
<!-- </div> -->
</div>
@ -191,7 +191,7 @@
<textarea matInput placeholder="Comments" rows="5" [(ngModel)]="gen_dev_fund_remarks"></textarea>
</mat-form-field>
<button class="mat-green" mat-raised-button style="color:white" (click)="storeData_session()">Proceed to Contribute</button>
<p class="quote">&#8221;We make a living by what we get. But we make a life by what we give <br/>- Winston Churchill&#8221;</p>
<p class="quote">&#8221;We make a living by what we get. But we make a life by what we give&#8221; <br/>- Winston Churchill</p>
</div>
</mat-card-content>
</mat-card>

View File

@ -138,6 +138,7 @@ export class RegisterComponent {
this.restApi.post(url,data).subscribe(schDet=>
{
console.log("result",schDet)
alert("Registered Successfully")
// this.router.navigate(['/authentication/login']);
this.loginScreen()
})

File diff suppressed because one or more lines are too long