李帅

1.增加注册登录接口

......@@ -24,6 +24,10 @@ Route::get('/', function () {
return view('welcome');
});
Route::get('/phpinfo', function () {
phpinfo();
});
Route::get('/create_overlay', function () {
header ('Content-Type: image/png');
......