Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dfd93e9

Browse files
committedDec 3, 2021
Minor changes
1 parent 38482f5 commit dfd93e9

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed
 

‎app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ def predict():
4040
return render_template('index.html', prediction_text='{}'.format(output[0]), anchor="services")
4141

4242
if __name__ == "__main__":
43-
app.run(debug=True)
43+
app.run(host="127.0.0.1", port=3000, debug=True)

‎templates/index.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,14 @@ <h2 data-aos="fade-up" data-aos-delay="400">Made with Python, Flask, HTML, Javas
7474
<a href="#services" class="btn-get-started scrollto d-inline-flex align-items-center justify-content-center align-self-center">
7575
<span>Start Analyzing</span>
7676
<i class="bi bi-arrow-right"></i>
77+
</a><br>
78+
<a href="" class="btn-get-started scrollto d-inline-flex align-items-center justify-content-center align-self-center">
79+
<span>Individual Account</span>
80+
<i class="bi bi-arrow-right"></i>
81+
</a><br>
82+
<a target="_blank" href="http://127.0.0.1:3000/" class="btn-get-started scrollto d-inline-flex align-items-center justify-content-center align-self-center">
83+
<span>Statement Check</span>
84+
<i class="bi bi-arrow-right"></i>
7785
</a>
7886
</div>
7987
</div>
@@ -395,7 +403,7 @@ <h3>Connect the .ipynb notebook file with flask</h3>
395403

396404
<div class="col-md-6" data-aos="zoom-out" data-aos-delay="600">
397405
<div class="feature-box d-flex align-items-center">
398-
<i class="bi bi-x"></i>
406+
<i class="bi bi-check"></i>
399407
<h3>Integrate visualization tools like graphs</h3>
400408
</div>
401409
</div>

0 commit comments

Comments
 (0)
Please sign in to comment.