Files
demo_spa_bot/app/keyboards/menu.py
T

22 lines
672 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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
)