Files
SubConverter-Extended/src/handler/webapp_page.h
sakuradairong 819c29b843 feat(webapp): add modern WebApp UI with tabs, presets and history
- Add tabbed interface (Basic/Advanced/History)
- Add quick action buttons for common formats
- Add preset system (Clash/Surge/QuanX/Sing-box/Node list)
- Add form persistence with localStorage
- Add conversion history with restore functionality
- Add URL format validation
- Add result statistics (size/lines/time)
- Add toast notifications
- Add light/dark theme support
- Add i18n (Chinese/English auto-detect)
- Add responsive mobile layout
- Update CMakeLists.txt and main.cpp routing
2026-06-15 15:33:41 +08:00

15 lines
249 B
C++

#ifndef WEBAPP_PAGE_H_INCLUDED
#define WEBAPP_PAGE_H_INCLUDED
#include <string>
#include "server/webserver.h"
namespace webapp_page {
std::string page(Request &, Response &response);
} // namespace webapp_page
#endif // WEBAPP_PAGE_H_INCLUDED