tren/views/search.html
ngn 4df8b90dae
All checks were successful
Build and publish the docker image / build (push) Successful in 58s
initial commit
Signed-off-by: ngn <ngn@ngn.tf>
2025-04-05 09:58:58 +03:00

14 lines
452 B
HTML

<form class="search" method="post" action="/translate">
{{if .term}}
<input name="term" type="text" placeholder="Enter a word or a sentence" value="{{.term}}">
{{else}}
<input name="term" type="text" placeholder="Enter a word or a sentence">
{{end}}
<select name="dictionary">
{{range .dictionaries}}
<option value="{{.ShortName}}">{{.Name}}</option>
{{end}}
</select>
<button type="submit">Translate</button>
</form>