Fixed trending, added explanation on VERIFY_CODE

This commit is contained in:
Pablo Ferreiro 2022-03-11 22:46:12 +01:00
parent 1e1376506c
commit f1de8e979b
No known key found for this signature in database
GPG key ID: 41FBCE65B779FA24
6 changed files with 65 additions and 9 deletions

View file

@ -14,6 +14,11 @@ $router->get('/about', function () {
$latte->render(Misc::getView('about'), new BaseTemplate('About'));
});
$router->get('/verify', function () {
$latte = Misc::latte();
$latte->render(Misc::getView('verify'), new BaseTemplate('Verify'));
});
$router->get('/stream', 'ProxyController@stream');
$router->get('/download', 'ProxyController@download');
$router->get('/redirect', 'RedirectController@redirect');