Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Smart Notes Summarizer</title> | |
| <link rel="stylesheet" href="{{ url_for('static', filename='normalize.css') }}"> | |
| <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> | |
| </head> | |
| <body class="p-4"> | |
| <h1>Notes Summarizer</h1> | |
| <form method="POST"> | |
| <textarea name="text" rows="8" class="form-control" placeholder="Paste your text here..."></textarea> | |
| <button class="btn btn-primary mt-3">Analyze</button> | |
| </form> | |
| {% if summary %} | |
| <hr> | |
| <h4>Summary:</h4> | |
| <p>{{ summary }}</p> | |
| <h4>Tags:</h4> | |
| <p>{{ tags }}</p> | |
| <h4>Sentiment:</h4> | |
| <p>{{ sentiment }}</p> | |
| {% endif %} | |
| <p class="link-wrapper"><a href="{{ url_for('history') }}" class="btn btn-secondary mt-3">View History</a></p> | |
| </body> | |
| </html> |