LingoSynth/lingosynth/app/templates/index.html

57 lines
1.7 KiB
HTML
Raw Normal View History

2023-05-11 21:48:16 +02:00
{% extends "components/base.html" %}
{% block header %}
<header>
<h1>
Write more accurately and efficiently with <span class="gradient-text">LingoSynth</span>.
</h1>
<p>
Stop worrying about plagiarism and start focusing on your productivity now with LingoSynth.
It's <span class="gradient-text">free</span> and works <span class="gradient-text">without an account</span>!
</p>
<a href="#get-started">
<button>
Get started
</button>
</a>
</header>
{% endblock %}
{% block content %}
<h2>Try it now!</h2>
2023-05-13 14:29:15 +02:00
<p>No account required. Just paste the text you want to be rephrased!</p>
2023-05-11 21:48:16 +02:00
<div id="popups"></div>
<div id="get-started"></div>
<div class="input-wrapper" id="textWrapper">
<textarea
id="textBox"
name="text"
rows="4" cols="50"
placeholder="Enter text here..."
style="resize: vertical; overflow: auto;"
autofocus
autocapitalize="true"
autocomplete="on"
autocorrect="on"
spellcheck="true"
>Your text here...</textarea>
</div>
<button id="rephraseButton" onclick="rephrase()">
<i id="rephraseIcon" class="ti ti-language"></i>
Rephrase
</button>
2023-05-13 14:29:15 +02:00
<button class="secondary" id="copyButton" onclick="copy()">
<i id="copyIcon" class="ti ti-clipboard"></i>
<span id="copyText">Copy</span>
</button>
2023-05-11 23:28:39 +02:00
<p>This can take several minutes for longer texts!</p>
2023-05-13 14:29:15 +02:00
<p>Feel free to visit another browser tab if you want to. Just don't close this tab.</p>
2023-05-11 21:48:16 +02:00
{% endblock %}
{% block scripts %}
<script src="/static/js/index.js"></script>
{% endblock %}