init project

This commit is contained in:
2023-06-27 14:47:56 +07:00
commit b78685db0b
25 changed files with 828 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<!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">
<input type="hidden" name="id" value="{{id}}">
<textarea name="reason" rows="5" cols="60"></textarea>
<br>
<button type="submit">Удалить</button>
</form>
</body>
</html>