File size: 1,167 Bytes
03c77e0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>NLP - Grammar Correction</title>
    <link

      href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap"

      rel="stylesheet"

    />
    <link

      rel="stylesheet"

      href="{{ url_for('static', filename='style.css') }}"

    />
  </head>
  <body>
    <div class="container">
      <div class="header">
        <h2>NLP - Grammar Correction</h2>
        <p>Software - Group 2</p>
      </div>
      <div class="form-wrapper">
        <form action="{{ url_for('predict') }}" method="post">
          <textarea

            name="Input_text"

            placeholder="Enter a sentence or paragraph to correct grammar..."

            required="required"

          ></textarea>
          <button type="submit" class="btn">Correct</button>
        </form>
        {% if prediction_text %}
        <div class="prediction">{{ prediction_text }}</div>
        {% endif %}
      </div>
      <div class="footer"></div>
    </div>
  </body>
</html>