|
a |
|
b/Web/templates/myaccount.html |
|
|
1 |
{% extends 'dashboardExtender.html' %} |
|
|
2 |
|
|
|
3 |
{% block sidebar %} |
|
|
4 |
<div class="scrollbar-sidebar"> |
|
|
5 |
<div class="app-sidebar__inner"> |
|
|
6 |
<ul class="vertical-nav-menu"> |
|
|
7 |
<li class="app-sidebar__heading">Dashboard</li> |
|
|
8 |
<li> |
|
|
9 |
<a href="{{ url_for('home') }}"> |
|
|
10 |
<i class="metismenu-icon fa fa-home"></i> |
|
|
11 |
Home |
|
|
12 |
</a> |
|
|
13 |
</li> |
|
|
14 |
|
|
|
15 |
|
|
|
16 |
<li> |
|
|
17 |
<a href="{{ url_for('diagnosecardio') }}" > |
|
|
18 |
<i class="metismenu-icon fa fa-plus-circle"> |
|
|
19 |
</i>Diagnose(Cardio) |
|
|
20 |
</a> |
|
|
21 |
</li> |
|
|
22 |
|
|
|
23 |
|
|
|
24 |
</ul> |
|
|
25 |
</div> |
|
|
26 |
</div> |
|
|
27 |
{% endblock %} |
|
|
28 |
|
|
|
29 |
|
|
|
30 |
{% block body %} |
|
|
31 |
<div class="app-main__inner"> |
|
|
32 |
<div class="app-page-title"> |
|
|
33 |
<div class="page-title-wrapper"> |
|
|
34 |
<div class="page-title-heading"> |
|
|
35 |
<div class="page-title-icon"> |
|
|
36 |
<i class="fa fa-file-text icon-gradient bg-amy-crisp"> </i> |
|
|
37 |
</div> |
|
|
38 |
<div>My Account |
|
|
39 |
<div class="page-title-subheading">View Your Account Details |
|
|
40 |
</div> |
|
|
41 |
</div> |
|
|
42 |
</div> |
|
|
43 |
</div> |
|
|
44 |
</div> |
|
|
45 |
<div class="tab-content"> |
|
|
46 |
<div class="tab-pane tabs-animation fade show active" id="tab-content-0" role="tabpanel"> |
|
|
47 |
<div class="row"> |
|
|
48 |
<div class="col-lg-8"> |
|
|
49 |
|
|
|
50 |
<div class="main-card mb-3 card"> |
|
|
51 |
<div class="card-body"><h5 class="card-title"></h5> |
|
|
52 |
|
|
|
53 |
<div class="tab-content"> |
|
|
54 |
<div class="tab-pane active" id="tab-eg11-0" role="tabpanel"> |
|
|
55 |
<table class="mb-0 table table-striped"> |
|
|
56 |
<thead> |
|
|
57 |
<th>Account Information</th> |
|
|
58 |
<th>Detail</th> |
|
|
59 |
</thead> |
|
|
60 |
<tbody> |
|
|
61 |
<tr> |
|
|
62 |
<th scope="row">Username</th> |
|
|
63 |
<td>{{ account[1] }}</td> |
|
|
64 |
</tr> |
|
|
65 |
<tr> |
|
|
66 |
<th scope="row">Email</th> |
|
|
67 |
<td>{{ account[3] }}</td> |
|
|
68 |
</tr> |
|
|
69 |
<tr> |
|
|
70 |
<th scope="row">Name</th> |
|
|
71 |
<td>{{ account[4] }}</td> |
|
|
72 |
</tr> |
|
|
73 |
{% if isDoctor %} |
|
|
74 |
<tr> |
|
|
75 |
<th scope="row">Registration No.</th> |
|
|
76 |
<td>{{ account[5] }}</td> |
|
|
77 |
</tr> |
|
|
78 |
<tr> |
|
|
79 |
<th scope="row">Contact No.</th> |
|
|
80 |
<td>{{ account[6] }}</td> |
|
|
81 |
</tr> |
|
|
82 |
<tr> |
|
|
83 |
<th scope="row">Hospital</th> |
|
|
84 |
<td>{{ account[7] }}</td> |
|
|
85 |
</tr> |
|
|
86 |
<tr> |
|
|
87 |
<th scope="row">Specialization</th> |
|
|
88 |
<td>{{ account[8] }}</td> |
|
|
89 |
</tr> |
|
|
90 |
<tr> |
|
|
91 |
<th scope="row">Address</th> |
|
|
92 |
<td>{{ account[9] }}</td> |
|
|
93 |
</tr> |
|
|
94 |
{% endif %} |
|
|
95 |
{% if not isDoctor %} |
|
|
96 |
<tr> |
|
|
97 |
<th scope="row">Address</th> |
|
|
98 |
<td>{{ account[5] }}</td> |
|
|
99 |
</tr> |
|
|
100 |
<tr> |
|
|
101 |
<th scope="row">Blood Group</th> |
|
|
102 |
<td>{{ account[6] }}</td> |
|
|
103 |
</tr> |
|
|
104 |
<tr> |
|
|
105 |
<th scope="row">Age</th> |
|
|
106 |
<td>{{ account[7] }}</td> |
|
|
107 |
</tr> |
|
|
108 |
<tr> |
|
|
109 |
<th scope="row">API Token</th> |
|
|
110 |
<td>{{ account[8] }}</td> |
|
|
111 |
</tr> |
|
|
112 |
{% endif %} |
|
|
113 |
</tbody> |
|
|
114 |
</table> |
|
|
115 |
</div> |
|
|
116 |
</div> |
|
|
117 |
</div> |
|
|
118 |
</div> |
|
|
119 |
|
|
|
120 |
</div> |
|
|
121 |
</div> |
|
|
122 |
</div> |
|
|
123 |
</div> |
|
|
124 |
</div> |
|
|
125 |
{% endblock %} |