-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from Dv04/Madhur
basic frontend complete
- Loading branch information
Showing
8 changed files
with
160 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,27 @@ | ||
{% extends 'base.html' %} {% block title %}Doctor{% endblock title %} {% block | ||
body %} | ||
<div class="container"> | ||
<div class="card" style="width: 18rem"> | ||
<div class="card-body"> | ||
<img src="..." class="card-img-top" alt="..." /> | ||
<h5 class="card-title">Card title</h5> | ||
<p class="card-text"> | ||
Some quick example text to build on the card title and make up the bulk | ||
of the card's content. | ||
</p> | ||
<a href="#" class="btn btn-primary">Go somewhere</a> | ||
</div> | ||
</div> | ||
<div id="predictive-model"> | ||
<div class="container"> | ||
<div class="card" style="width: 18rem"> | ||
<div class="card-body"> | ||
<img src="..." class="card-img-top" alt="..." /> | ||
<h5 class="card-title">Card title</h5> | ||
<p class="card-text"> | ||
Some quick example text to build on the card title and make up the bulk | ||
of the card's content. | ||
</p> | ||
<a href="#" class="btn btn-primary">Go somewhere</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div id="speech-to-text"> | ||
<p>Speech To Text</p> | ||
</div> | ||
<div id="ocr"> | ||
<p>OCR</p> | ||
</div> | ||
<div id="disease-form"> | ||
<p>Form Here</p> | ||
</div> | ||
{% endblock body %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{% extends 'base.html' %} | ||
|
||
{% block title %}Pharmacy{% endblock title %} | ||
|
||
{% block body %} | ||
<div id="medicines"> | ||
{% for medicine in medicines %} | ||
<div class="container"> | ||
<div class="card" style="width: 18rem"> | ||
<div class="card-body"> | ||
<h5 class="card-title"><img src="..." class="card-img-top" alt="..." />Medicine Name</h5> | ||
<p class="card-text"> | ||
Medicine Description | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
<div id="prescription"> | ||
<p>A search bar to search for the patient prescription on name basis</p> | ||
</div> | ||
{% endblock body %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters