add_bot.tmpl.html 542 B

123456789101112131415161718
  1. {{ define "add_bot" }}
  2. {{ template "header" . }}
  3. <h1>WarTank</h1>
  4. Страница добавления бота вартанк.
  5. <form action="/api/add_bot" method="POST">
  6. <label>Логин бота:</label>
  7. <input type="text" name="login_bot" placeholder="login_bot">
  8. <br>
  9. <label>Пароль бота:</label>
  10. <input type="text" name="password_bot" placeholder="password_bot">
  11. <br>
  12. <input type="submit" value="Добавить">
  13. </form>
  14. {{ if .err }}
  15. <p>{{ .err }}</p>
  16. {{ end }}
  17. {{ template "footer" . }}
  18. {{end}}