36 lines
592 B
HTML
36 lines
592 B
HTML
<!doctype html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<title>Fastionary</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Fastionary</h1>
|
|
<form action="" method="get">
|
|
<label for="searchQuery">Translate:</label>
|
|
<input type="text" id="searchQuery" name="q">
|
|
<button type="submit">Search</button>
|
|
</form>
|
|
<br>
|
|
|
|
<!--
|
|
{% if q %}
|
|
<h1>Your searched for: "{{ q }}"</h1>
|
|
<h1>Result: "{{ t }}"!</h1>
|
|
{% endif %}
|
|
-->
|
|
|
|
{% if t %}
|
|
<table border="1">
|
|
<tr>
|
|
<td>{{ q }}</td>
|
|
<td>{{ t }}</td>
|
|
</tr>
|
|
</table>
|
|
{% endif %}
|
|
|
|
</body>
|
|
</html>
|