[6b894f]: / Web / templates / myaccount.html

Download this file

125 lines (115 with data), 5.7 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
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{% extends 'dashboardExtender.html' %}
{% block sidebar %}
<div class="scrollbar-sidebar">
<div class="app-sidebar__inner">
<ul class="vertical-nav-menu">
<li class="app-sidebar__heading">Dashboard</li>
<li>
<a href="{{ url_for('home') }}">
<i class="metismenu-icon fa fa-home"></i>
Home
</a>
</li>
<li>
<a href="{{ url_for('diagnosecardio') }}" >
<i class="metismenu-icon fa fa-plus-circle">
</i>Diagnose(Cardio)
</a>
</li>
</ul>
</div>
</div>
{% endblock %}
{% block body %}
<div class="app-main__inner">
<div class="app-page-title">
<div class="page-title-wrapper">
<div class="page-title-heading">
<div class="page-title-icon">
<i class="fa fa-file-text icon-gradient bg-amy-crisp"> </i>
</div>
<div>My Account
<div class="page-title-subheading">View Your Account Details
</div>
</div>
</div>
</div>
</div>
<div class="tab-content">
<div class="tab-pane tabs-animation fade show active" id="tab-content-0" role="tabpanel">
<div class="row">
<div class="col-lg-8">
<div class="main-card mb-3 card">
<div class="card-body"><h5 class="card-title"></h5>
<div class="tab-content">
<div class="tab-pane active" id="tab-eg11-0" role="tabpanel">
<table class="mb-0 table table-striped">
<thead>
<th>Account Information</th>
<th>Detail</th>
</thead>
<tbody>
<tr>
<th scope="row">Username</th>
<td>{{ account[1] }}</td>
</tr>
<tr>
<th scope="row">Email</th>
<td>{{ account[3] }}</td>
</tr>
<tr>
<th scope="row">Name</th>
<td>{{ account[4] }}</td>
</tr>
{% if isDoctor %}
<tr>
<th scope="row">Registration No.</th>
<td>{{ account[5] }}</td>
</tr>
<tr>
<th scope="row">Contact No.</th>
<td>{{ account[6] }}</td>
</tr>
<tr>
<th scope="row">Hospital</th>
<td>{{ account[7] }}</td>
</tr>
<tr>
<th scope="row">Specialization</th>
<td>{{ account[8] }}</td>
</tr>
<tr>
<th scope="row">Address</th>
<td>{{ account[9] }}</td>
</tr>
{% endif %}
{% if not isDoctor %}
<tr>
<th scope="row">Address</th>
<td>{{ account[5] }}</td>
</tr>
<tr>
<th scope="row">Blood Group</th>
<td>{{ account[6] }}</td>
</tr>
<tr>
<th scope="row">Age</th>
<td>{{ account[7] }}</td>
</tr>
<tr>
<th scope="row">API Token</th>
<td>{{ account[8] }}</td>
</tr>
{% endif %}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}