Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jothi_kannan
casino-ui
Commits
92c29974
Commit
92c29974
authored
2 years ago
by
anuraag
Browse files
Options
Download
Email Patches
Plain Diff
anuraag commit
parent
9a359082
master
ForServices
utkarsh_resolved
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/app/app.component.html
+1
-1
src/app/app.component.html
src/app/emarketing/admin-emarketing/admin-emarketing.component.css
+2
-2
...marketing/admin-emarketing/admin-emarketing.component.css
src/app/player/payment/payment.component.html
+4
-3
src/app/player/payment/payment.component.html
src/app/player/payment/payment.component.ts
+1
-0
src/app/player/payment/payment.component.ts
with
8 additions
and
6 deletions
+8
-6
src/app/app.component.html
View file @
92c29974
...
...
@@ -13,7 +13,7 @@
<a
mat-button
(click)=
"logout()"
>
Log out
</a>
</span>
<span
*ngIf=
"isAdminLogin()"
>
<a
mat-button
routerLink=
"/admin-filter"
>
Player
s
</a>
<a
mat-button
routerLink=
"/admin-filter"
>
Player
Filter
</a>
<a
mat-button
routerLink=
"/admin-emarketing"
>
E-Marketing
</a>
<a
mat-button
routerLink=
"/view-all-tickets"
>
Help Desk
</a>
<a
mat-button
(click)=
"adminLogout()"
>
Log out
</a>
...
...
This diff is collapsed.
Click to expand it.
src/app/emarketing/admin-emarketing/admin-emarketing.component.css
View file @
92c29974
...
...
@@ -17,14 +17,14 @@
background-color: #f0e9fd;
border-color: black;
}*/
.search-box
{
/*
.search-box{
display: flex;
align-items: center;
width: 600px;
height: 200px;
border-radius: 10px;
background-color: white;
}
}
*/
input
::placeholder
{
color
:
#807e7e
;
text-align
:
center
;
...
...
This diff is collapsed.
Click to expand it.
src/app/player/payment/payment.component.html
View file @
92c29974
...
...
@@ -3,16 +3,17 @@
<div
class=
"card"
>
<div
class=
"card-body"
>
<form
autocomplete=
"off"
#registrationForm
=
"
ngForm
"
[formGroup]=
"Registarionform"
(ngSubmit)=
"paynow()"
>
<!--
<div class="mb-3row">
<label for="playerid" class="col-form-label-col-sm-2">Player Id:</label>
<div class="col-md-5">
<input type="text" id="playerid" formControlName="playerid" [(ngModel)]="playerid" class="form-control" />
<!--
<p class="form-text text-danger" *ngIf="playerid.errors?\.['required'] && playerid.touched || playerid.dirty)">
//
<p class="form-text text-danger" *ngIf="playerid.errors?\.['required'] && playerid.touched || playerid.dirty)">
Player ID should is required.
</p>
-->
</p>
//
</div>
<small *ngIf="Registarionform.controls['playerid'].dirty && Registarionform.hasError('required','playerid') " class="text-danger">*Player Id is Required</small>
</div>
</div>
-->
<br>
<!--<div class="mb-3row">
<label for="name" class="col-form-label col-sm-2">Name:</label>
...
...
This diff is collapsed.
Click to expand it.
src/app/player/payment/payment.component.ts
View file @
92c29974
...
...
@@ -123,6 +123,7 @@ export class PaymentComponent implements OnInit {
amount_deposited
:
this
.
Registarionform
.
controls
[
'
amount
'
].
value
,
transaction_status
:
"
Success
"
}
console
.
log
(
deposit
);
this
.
ps
.
addDepositDetails
(
deposit
).
subscribe
(
res
=>
console
.
log
(
res
));
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help