Refineverse_testBG / templates /RefineverseDashboardUI.html
bsjghee001's picture
Duplicate from Nik97/Refineverse
910fc51
<!-- jinja2 template engine coding style for flask framework -->
<!DOCTYPE html>
<html>
<head>
<title>DashboardUI</title>
<link rel="stylesheet" href="{{url_for('static', filename='Dashboard.css')}}">
</head>
<body>
<div class="title">
<img src="{{url_for('static', filename='Images/Refineverse logo.png')}}" alt="cant find picture">
<h1>User Story Refinement</h1>
</div>
<div class="pic">
<img src="{{url_for('static', filename='Images/Text Summarization.png')}}" alt="cant find picture" class="p1">
<img src="{{url_for('static', filename='Images/Project Breakdown.png')}}" alt="cant find picture" class="p2">
<img src="{{url_for('static', filename='Images/Language Translation.jpg')}}" alt="cant find picture" class="p3">
</div>
<div class="trdl">
<div class="texts1">
<h2>Text Summarization</h2>
<p id="f">With our plugin's natural language processing capabilities, you can now generate a concise summary of your user story with just a few clicks. No more sifting through lengthy descriptions or struggling to communicate the essence of your user story to team members. Our plugin does the heavy lifting for you!</p>
</div>
<div class="texts2">
<h2>Project Task Breakdown</h2>
<p id="s">With our plugin's natural language processing capabilities, our project task breakdown feature allows you to reduce a user story into multiple project tasks, for easier allocation of tasks to project members within a team. No more having to think of project tasks for team allocation.</p>
</div>
<div class="texts3">
<h2>Language Translation</h2>
<p id="t">With our plugin's advanced natural language processing capabilities, our language translation feature provides customizable translation options, allowing you to choose which languages you want to translate your user stories into. Allowing team members who speak different languages to collaborate more effectively and improving productivity.</p>
</div>
</div>
<div class="buttonc">
<a href="{{url_for('text_summarization')}}" class="button1">Text Summarization</a>
<a href="{{url_for('project_breakdown')}}" class="button1">Project Task Breakdown</a>
<a href="{{url_for('language_translation')}}" class="button1">Language Translation</a>
</div>
</body>
</html>