File size: 3,028 Bytes
910fc51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!-- jinja2 template engine coding style for flask framework -->
<!DOCTYPE html>
<html>
  <head>
    <title>TextSummarizationUI</title>
    <link rel="stylesheet" href="{{ url_for('static', filename='TextSummarization.css') }}">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
  </head>
  <body>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
    
    <div class="container">
   
      <div class="logo">
        <img id="refineverseLogo" alt="RefineverseLogo" src="{{ url_for('static', filename='Images/Refineverse logo.png') }}" class="home-image"/>
      </div>

      <div>
        <label class="title">Text Summarization</label>
        <p class="message">
          Splitting large user stories into smaller user stories.
        </p>
      </div>
     
    </div>

    <div class="container">
      <form method="POST" action="#">
        <div class="box">
          <textarea class="textarea" name="input_text" id="input_textarea" placeholder="Please describe your User Story in 'As a _ , I want to _ so that _' format."></textarea>
        </div>
        <div class="box1">
          <textarea class="textarea1" name="output_text" id="output_textarea" placeholder="Your summarized output goes here!" readonly>{{ summarizedStory }}</textarea>
        </div>
        <div class="buttons-container">
          <button class="ClearBtn" type="button" onclick="clearTextareas()">Clear</button>
          <button class="SummarizeBtn" type="submit">Summarize</button>
        </div>
      </form>
    </div>

    <div class="messages-container">
      {% with messages = get_flashed_messages(with_categories=true) %}
        {% for category, message in messages %}
          {% if category == 'error' %}
          <div class="alert alert-danger alert-dismissible fade show" role="alert">
              {{ message }}
              <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
          </div>
          {% else %}
          <div class="alert alert-success alert-dismissible fade show" role="alert">
              {{ message }}
              <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
          </div>
          {% endif %}
        {% endfor %}
      {% endwith %}
    </div>
  </div>

    <div class="BackBtnContainer">
      <div class="buttons-container">
        <a href="{{ url_for('index') }}"><button class="BackBtn">Back</button></a>
      </div>
    </div>

    <script>
      function clearTextareas()
      {
        document.getElementById('input_textarea').value = '';
        document.getElementById('output_textarea').value = '';
      }
    </script>
  </body>
</html>