| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>WhatsApp Bot Uploader</title> |
| <style> |
| body { |
| font-family: Arial, sans-serif; |
| max-width: 800px; |
| margin: 0 auto; |
| padding: 20px; |
| background-color: #f5f5f5; |
| } |
| .container { |
| background-color: white; |
| padding: 30px; |
| border-radius: 8px; |
| box-shadow: 0 2px 10px rgba(0,0,0,0.1); |
| } |
| h1 { |
| color: #25D366; |
| text-align: center; |
| } |
| .btn { |
| display: inline-block; |
| padding: 10px 20px; |
| background-color: #25D366; |
| color: white; |
| text-decoration: none; |
| border-radius: 4px; |
| margin: 10px 0; |
| } |
| .btn:hover { |
| background-color: #128C7E; |
| } |
| .links { |
| margin-top: 30px; |
| } |
| </style> |
| </head> |
| <body> |
| <div class="container"> |
| <h1>WhatsApp Bot File Uploader</h1> |
| <p>Welcome to the WhatsApp Bot file upload service. You can upload files that will be accessible to your WhatsApp bot.</p> |
| |
| <a href="/upload" class="btn">Upload File</a> |
| <a href="/api-docs" class="btn">API Documentation</a> |
| |
| <div class="links"> |
| <h3>Useful Links:</h3> |
| <ul> |
| <li><a href="/api-docs">API Documentation (Swagger UI)</a></li> |
| <li><a href="/upload">File Upload Form</a></li> |
| </ul> |
| </div> |
| </div> |
| </body> |
| </html> |