added upload video and post image

This commit is contained in:
Thomas G 2022-07-12 02:31:13 +10:00
parent 2dd2be373b
commit 8bcfeeb084
4 changed files with 66 additions and 1 deletions

View File

@ -45,4 +45,15 @@ class ClientController extends Controller
{
return view('client.toolbox');
}
public function postimage()
{
return view('client.postimage');
}
public function uploadvideo()
{
return view('client.uploadvideo');
}
}

View File

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Image Posted - {{ env('APP_NAME') }}</title>
<meta charset="utf-8">
<meta content="Image Posted - ARCHBLOX" property="og:title" />
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
<meta content="https://archblox.com" property="og:url" />
<meta content="https://archblox.com/img/MORBLOXlogo.png" property="og:image" />
<meta content="#4b4b4b" data-react-helmet="true" name="theme-color" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-icon" href="{{ asset('img/MORBLOX.png') }}" />
<link rel="apple-touch-startup-image" href="{{ asset('img/MORBLOXsplash.png') }}" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}">
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
<script src="{{ asset('js/main.js') }}"></script>
</head>
<body>
<div class="content_signup">
<h1>Screenshot taken!</h1>
<p>Go to your pictures folder to find it.</p>
</div>
</body>
</html>

View File

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Video Recorded - {{ env('APP_NAME') }}</title>
<meta charset="utf-8">
<meta content="Video Recorded - ARCHBLOX" property="og:title" />
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
<meta content="https://archblox.com" property="og:url" />
<meta content="https://archblox.com/img/MORBLOXlogo.png" property="og:image" />
<meta content="#4b4b4b" data-react-helmet="true" name="theme-color" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-icon" href="{{ asset('img/MORBLOX.png') }}" />
<link rel="apple-touch-startup-image" href="{{ asset('img/MORBLOXsplash.png') }}" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}">
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
<script src="{{ asset('js/main.js') }}"></script>
</head>
<body>
<div class="content_signup">
<h1>Video Recorded!</h1>
<p>Go to your videos folder to find it.</p>
</div>
</body>
</html>

View File

@ -55,4 +55,6 @@ Route::get('/game/visit.ashx', [App\Http\Controllers\ClientController::class, 'v
Route::get('/game/ChatFilter.ashx', [App\Http\Controllers\ClientController::class, 'chatfilter'])->name('chatfilter');
// Route::get('/game/join.php', [App\Http\Controllers\ClientController::class, 'join'])->name('join');
Route::get('/ide/welcome', [App\Http\Controllers\ClientController::class, 'ide'])->name('ide');
Route::get('/IDE/ClientToolbox.aspx', [App\Http\Controllers\ClientController::class, 'toolbox'])->name('toolbox');
Route::get('/IDE/ClientToolbox.aspx', [App\Http\Controllers\ClientController::class, 'toolbox'])->name('toolbox');
Route::get('/UploadMedia/PostImage.aspx', [App\Http\Controllers\ClientController::class, 'postimage'])->name('postimage');
Route::get('/UploadMedia/UploadVideo.aspx', [App\Http\Controllers\ClientController::class, 'uploadvideo'])->name('uploadvideo');