22 lines
672 B
Python
22 lines
672 B
Python
from aiogram.types import ReplyKeyboardMarkup, KeyboardButton
|
||
|
||
menu = ReplyKeyboardMarkup(
|
||
keyboard=[
|
||
[KeyboardButton(text="📋 Услуги"),
|
||
KeyboardButton(text="📅 Записаться")],
|
||
[KeyboardButton(text="👤 Профиль"),
|
||
KeyboardButton(text="📄 Мои записи")],
|
||
[KeyboardButton(text="📞 Контакты"),
|
||
KeyboardButton(text="ℹ️ О нас")],
|
||
],
|
||
resize_keyboard=True,
|
||
input_field_placeholder="Выберите действие..."
|
||
)
|
||
|
||
cancel_menu = ReplyKeyboardMarkup(
|
||
keyboard=[
|
||
[KeyboardButton(text="❌ Отмена")]
|
||
],
|
||
resize_keyboard=True
|
||
)
|