Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Connect Wallet</title> <style> body { font-family: Arial, sans-serif; text-align: center; margin-top: 50px; } button.open { padding: 10px 20px; font-size: 18px; background-color: #4CAF50; color: white; border: none; border-radius: 5px; cursor: pointer; } button.open:hover { background-color: #45a049; } </style> <script src="/static/app.js"></script> </head> <body> <h1>Mini-Application Telegram</h1> <button class="open">Connect Wallet</button> </body> </html>
Leave a Comment