-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.component.html
More file actions
48 lines (37 loc) · 1.58 KB
/
profile.component.html
File metadata and controls
48 lines (37 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<app-customer-layout></app-customer-layout>
<div class="container-fluid"style="text-align:center;">
<h1>Profile</h1>
<br />
<div class="table-responsive" style="text-align:center;" >
<table class="table" style="border:5px solid rgba(220,230,242,1); ">
<tr style="background-color:rgba(220,230,242,1); font-size:12pt" >
<th style="text-align:left;">First Name</th>
<td style="text-align:left;">{{Fname}}</td>
</tr>
<tr style="background-color:rgba(220,230,242,1); font-size:12pt">
<th style="text-align:left;">Last Name</th>
<td style="text-align:left;"></td>
</tr>
<tr style="background-color:rgba(220,230,242,1); font-size:12pt">
<th style="text-align:left;">Email</th>
<td style="text-align:left;"></td>
</tr>
<tr style="background-color:rgba(220,230,242,1); font-size:12pt">
<th style="text-align:left;">Gender</th>
<td style="text-align:left;"></td>
</tr>
<tr style="background-color:rgba(220,230,242,1); font-size:12pt">
<th style="text-align:left;">Contact Number</th>
<td style="text-align:left;"></td>
</tr>
<tr style="background-color:rgba(220,230,242,1); font-size:12pt">
<th style="text-align:left;">Date Of Birth</th>
<td style="text-align:left;"></td>
</tr>
<tr style="background-color:rgba(220,230,242,1); font-size:12pt">
<th style="text-align:left;">Address</th>
<td style="text-align:left;"></td>
</tr>
</table>
</div>
</div>