$('#delete_input').click(...)
$('.form-row .cansel_btn_input').click(...)
a:hover {
color: red; /* Цвет текста ссылки */
}
a:hover svg {
fill: red; /* Цвет заливки иконки */
}
axios.all([
axios.post('auth/signin', {...}),
axios.get("captcha/check", {...})
])
.then(res => {
// res[0] - Тут будет ответ от axios.post('auth/signin', {...})
// res[1] - Тут будет ответ от axios.post('captcha/check', {...})
...
как их разбить
<br>