Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 15 additions & 13 deletions templates/analyze.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,21 @@
</div>


<div class="container">

<h1>Your Analyzed Text - {{ purpose }}</h1>

<div style="position:relative;" class="bg-light">
<p>
<button id="corner-btn" class="btn btn-outline-primary" onclick="copy()">
Copy
</button>
<pre id="copy-text" class="p-4"><h2>{{ analyzed_text }}</h2></pre>
</p>
</div>
</div>
<div class="container mt-4">
<div class="card">
<h5 class="card-header">Analzed Text</h5>
<div class="card-body">
<h5 class="card-title">{{ purpose }}</h5>
<div style="position:relative;" class="bg-light">
<p>
<button id="corner-btn" class="btn btn-outline-primary" onclick="copy()">
Copy
</button>
<pre id="copy-text" class="p-4"><h2>{{ analyzed_text }}</h2></pre>
</p>
<a href="/" class="btn btn-dark mt-2">Go Back</a>
</div>
</div>
<footer class="footer">
<div class="container">
<span class="text-light">&#169 2019 Textutils.in </span>
Expand Down