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
6d0cc006
Commit
6d0cc006
authored
May 10, 2023
by
Janani Denipitiya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lung cancer level detection
parent
df506b1c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
77 additions
and
0 deletions
+77
-0
lung_cancer_level_detection.html
lung_cancer_level_detection.html
+77
-0
No files found.
lung_cancer_level_detection.html
0 → 100644
View file @
6d0cc006
{% extends 'base.html' %}
{% block main %}
<div
style=
"margin-left: 5%;margin-top: 2%;margin-right: 5%;"
>
<h2>
Calculating The Risk Of Lung Disease
</h2>
<div
class=
"alert alert-primary"
role=
"alert"
>
Please enter your symptoms
</div>
</div>
<form
method=
"post"
action=
"{{ url_for('predictLungCancerLevel') }}"
style=
"margin-left: 5%;margin-right: 5%;margin-bottom: 5%;"
>
<div
class=
"form-group"
>
<label>
Gender
</label>
<input
type=
"text"
name=
"GENDER"
class=
"form-control"
/>
<small
class=
"form-text text-muted"
>
Male - 0, Female - 1
</small>
</div>
<div
class=
"form-group"
>
<label>
Age
</label>
<input
type=
"text"
name=
"AGE"
class=
"form-control"
/>
</div>
<div
class=
"form-group"
>
<label>
Smoking status
</label>
<input
type=
"text"
name=
"SMOKING"
class=
"form-control"
/>
<small
id=
"emailHelp"
class=
"form-text text-muted"
>
Rate 0 - 9
</small>
</div>
<div
class=
"form-group"
>
<label>
Are you fatigue?
</label>
<input
type=
"text"
name=
"FATIGUE"
class=
"form-control"
/>
<small
id=
"emailHelp"
class=
"form-text text-muted"
>
Rate 0 - 9
</small>
</div>
<div
class=
"form-group"
>
<label>
Do you have allergy?
</label>
<input
type=
"text"
name=
"ALLERGY"
class=
"form-control"
/>
<small
id=
"emailHelp"
class=
"form-text text-muted"
>
Rate 0 - 9
</small>
</div>
<div
class=
"form-group"
>
<label>
Do you have wheeze?
</label>
<input
type=
"text"
name=
"WHEEZING"
class=
"form-control"
/>
<small
id=
"emailHelp"
class=
"form-text text-muted"
>
Rate 0 - 9
</small>
</div>
<div
class=
"form-group"
>
<label>
Do you use alcohol?
</label>
<input
type=
"text"
name=
"ALCOHOL"
class=
"form-control"
/>
<small
id=
"emailHelp"
class=
"form-text text-muted"
>
Rate 0 - 9
</small>
</div>
<div
class=
"form-group"
>
<label>
Do you have cough?
</label>
<input
type=
"text"
name=
"COUGHING"
class=
"form-control"
/>
<small
id=
"emailHelp"
class=
"form-text text-muted"
>
Rate 0 - 9
</small>
</div>
<div
class=
"form-group"
>
<label>
Are you having short breath?
</label>
<input
type=
"text"
name=
"SHORTBREATH"
class=
"form-control"
/>
<small
id=
"emailHelp"
class=
"form-text text-muted"
>
Rate 0 - 9
</small>
</div>
<div
class=
"form-group"
>
<label>
Any swallow difficulty?
</label>
<input
type=
"text"
name=
"SWALLOW"
class=
"form-control"
/>
<small
id=
"emailHelp"
class=
"form-text text-muted"
>
Rate 0 - 9
</small>
</div>
<div
class=
"form-group"
>
<label>
Any chest pain?
</label>
<input
type=
"text"
name=
"CHESTPAIN"
class=
"form-control"
/>
<small
id=
"emailHelp"
class=
"form-text text-muted"
>
Rate 0 - 9
</small>
</div>
<div
class=
"form-group"
>
<label>
Does anyone in your household have this disease?
</label>
<input
type=
"text"
name=
"GENETICRISK"
class=
"form-control"
/>
<small
id=
"emailHelp"
class=
"form-text text-muted"
>
Rate 0 - 9
</small>
</div>
<div
class=
"form-group"
>
<label>
Coughing up blood?
</label>
<input
type=
"text"
name=
"COUGHINGBLOOD"
class=
"form-control"
/>
<small
id=
"emailHelp"
class=
"form-text text-muted"
>
Rate 0 - 9
</small>
</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