сделал верстку lang и mini-profile

This commit is contained in:
Kirill Pet
2024-10-04 17:25:13 +03:00
parent b208ae3e64
commit 3a612da230
16 changed files with 412 additions and 10 deletions

12
del.html Normal file
View File

@@ -0,0 +1,12 @@
<!-- Пример формы для отправки в Телеграмм (обработчик send-telegram.php) -->
<form class="form" method="post" action="/send-telegram.php">
<div class="form__item">
<input class="form__input" type="text" name="name" required>
<label class="form__label">Ваше имя</label>
</div>
<div class="form__item">
<input class="form__input" type="text" name="phone" required>
<label class="form__label">Номер телефона</label>
</div>
<input class="form__input btn" type="submit" value="Отправить">
</form>