Commit 6d0cc006 authored by Janani Denipitiya's avatar Janani Denipitiya

lung cancer level detection

parent df506b1c
{% 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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment