22 lines
645 B
HTML
22 lines
645 B
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Удаление документа</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h2>Вы действительно хотите удалить номер: {{ id }}?</h2>
|
|
Причина удаления?
|
|
<form action="/web/call/delete/confirm" method="post">
|
|
<textarea name="reason"></textarea>
|
|
<input type="hidden" name="id" value="{{id}}">
|
|
<button type="submit">Удалить</button>
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html> |