review-scrapper / templates / index.html
index.html
Raw
{% extends 'base.html' %}

{% block head %}

<title>Search Page</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
{% endblock %}

{% block body %}
<div class="content">
    <br>
    <br>
    <br>
    <h1 style="text-align: center">Review Scrapper</h1>
    <br>
    <p style="text-align: left;font-size:17px">
        The app displays reviews for a product from <a href="https://www.flipkart.com/">flipkart.com</a>.
    </p>
    <p style="text-align: left">Enter a keyword</p>
    <div class="form">
        <form action="/reviews" method="POST">
            <input type="text" name="content" id="content">
            <input type="submit" value="Search">
        </form>
    </div>

    <p style="text-align: left"> Keywords to try: iPhone 12, Samsung S10, Macbook Pro, etc.</p>
    <br>
    {{ error }}
</div>
{% endblock %}