index.html 537 B

1234567891011121314151617181920
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>memoQ TM Search</title>
  5. </head>
  6. <body>
  7. <form action="/q">
  8. <p>Text:</p>
  9. <input type="text" name="phrase">
  10. <p>Language:</p>
  11. <select name="lang">
  12. <option value="">All</option>
  13. {{range $key, $value := .}}
  14. <option value="{{$key}}">{{$value}}</option>
  15. {{end}}
  16. </select>
  17. <input type="submit" value="Search">
  18. </form>
  19. </body>
  20. </html>