Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
22_23-J 52
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
22_23-J 52
22_23-J 52
Commits
10160eff
Commit
10160eff
authored
May 15, 2023
by
Kithmini Nimasha Ketangoda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
templates/kidney_prediction
parent
99576295
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
76 additions
and
0 deletions
+76
-0
kidney_prediction.html
kidney_prediction.html
+76
-0
No files found.
kidney_prediction.html
0 → 100644
View file @
10160eff
{% extends 'base.html' %}
{% block main %}
<div
style=
"margin-left: 5%;margin-top: 2%;margin-right: 5%;"
>
<h2>
Predict Kidney Disease
</h2>
<div
class=
"alert alert-primary"
role=
"alert"
>
Please enter your symptoms
</div>
</div>
<form
method=
"post"
action=
"{{ url_for('predictKidney') }}"
style=
"margin-left: 5%;margin-right: 5%;margin-bottom: 5%;"
>
<div
class=
"form-group"
>
<label>
Blood Pressure
</label>
<input
type=
"text"
name=
"bp"
class=
"form-control"
/>
</div>
<div
class=
"form-group"
>
<label>
Specific Gravity
</label>
<input
type=
"text"
name=
"sg"
class=
"form-control"
/>
</div>
<div
class=
"form-group"
>
<label>
Albumin
</label>
<input
type=
"text"
name=
"al"
class=
"form-control"
/>
</div>
<div
class=
"form-group"
>
<label>
Sugar
</label>
<input
type=
"text"
name=
"su"
class=
"form-control"
/>
</div>
<div
class=
"form-group"
>
<label>
Red Blood Cells
</label>
<input
type=
"text"
name=
"rbc"
class=
"form-control"
/>
</div>
<div
class=
"form-group"
>
<label>
Blood Urea
</label>
<input
type=
"text"
name=
"bu"
class=
"form-control"
/>
</div>
<div
class=
"form-group"
>
<label>
Serum Creatinine
</label>
<input
type=
"text"
name=
"sc"
class=
"form-control"
/>
</div>
<div
class=
"form-group"
>
<label>
Sodium
</label>
<input
type=
"text"
name=
"sod"
class=
"form-control"
/>
</div>
<div
class=
"form-group"
>
<label>
Pottasium
</label>
<input
type=
"text"
name=
"pot"
class=
"form-control"
/>
</div>
<div
class=
"form-group"
>
<label>
Hemoglobin
</label>
<input
type=
"text"
name=
"hemo"
class=
"form-control"
/>
</div>
<div
class=
"form-group"
>
<label>
White Blood Cell Count
</label>
<input
type=
"text"
name=
"wbcc"
class=
"form-control"
/>
</div>
<div
class=
"form-group"
>
<label>
Red Blood Cell Count
</label>
<input
type=
"text"
name=
"rbcc"
class=
"form-control"
/>
</div>
<div
class=
"form-group"
>
<label>
Hypertension
</label>
<input
type=
"text"
name=
"htn"
class=
"form-control"
/>
</div>
<button
type=
"submit"
class=
"btn btn-primary"
>
Submit
</button>
</form>
{% endblock %}
\ No newline at end of file
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