| 123456789101112131415161718 |
- {{ define "add_bot" }}
- {{ template "header" . }}
- <h1>WarTank</h1>
- Страница добавления бота вартанк.
- <form action="/api/add_bot" method="POST">
- <label>Логин бота:</label>
- <input type="text" name="login_bot" placeholder="login_bot">
- <br>
- <label>Пароль бота:</label>
- <input type="text" name="password_bot" placeholder="password_bot">
- <br>
- <input type="submit" value="Добавить">
- </form>
- {{ if .err }}
- <p>{{ .err }}</p>
- {{ end }}
- {{ template "footer" . }}
- {{end}}
|