Commit 86f759fc authored by Khumoyunmirzo Sodiqov's avatar Khumoyunmirzo Sodiqov

video

parent bc53d2dc
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
pager: false, pager: false,
minSlides: 1, minSlides: 1,
maxSlides: 5, maxSlides: 5,
moveSlides: 2, moveSlides: 5,
slideWidth: 210, slideWidth: 210,
slideMargin: 25, slideMargin: 25,
prevSelector: $('#client-prev'), prevSelector: $('#client-prev'),
......
This diff is collapsed.
<!DOCTYPE html>
<html>
<head>
<title>Fazoshop | Доставка любого вида груза из США во все регионы Узбекистана.</title>
<meta name="format-detection" content="telephone=no">
<meta name="viewport"
content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta charset="utf-8">
</head>
<body>
<video width="400" controls>
<source src="{{ asset('video') }}/fazo.mp4" type="video/mp4">
{{-- <source src="mov_bbb.ogg" type="video/ogg">--}}
Your browser does not support HTML5 video.
</video>
</body>
</html>
<!doctype html> <!doctype html>
<html lang="{{ app()->getLocale() }}"> <html lang="{{ app()->getLocale() }}">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
...@@ -63,33 +63,13 @@ ...@@ -63,33 +63,13 @@
margin-bottom: 30px; margin-bottom: 30px;
} }
</style> </style>
</head> </head>
<body> <body>
<div class="flex-center position-ref full-height">
@if (Route::has('login'))
<div class="top-right links">
@auth
<a href="{{ url('/home') }}">Home</a>
@else
<a href="{{ route('login') }}">Login</a>
<a href="{{ route('register') }}">Register</a>
@endauth
</div>
@endif
<div class="content"> <video width="100%" controls autoplay>
<div class="title m-b-md"> <source src="{{ asset('video') }}/fazo.mp4" type="video/mp4">
Laravel {{-- <source src="mov_bbb.ogg" type="video/ogg">--}}
</div> Your browser does not support HTML5 video.
</video>
<div class="links"> </body>
<a href="https://laravel.com/docs">Documentation</a>
<a href="https://laracasts.com">Laracasts</a>
<a href="https://laravel-news.com">News</a>
<a href="https://forge.laravel.com">Forge</a>
<a href="https://github.com/laravel/laravel">GitHub</a>
</div>
</div>
</div>
</body>
</html> </html>
...@@ -14,6 +14,10 @@ ...@@ -14,6 +14,10 @@
Route::get('/', function () { Route::get('/', function () {
return view('main'); return view('main');
}); });
Route::get('/watch', function () {
return view('welcome');
});
// //
//Auth::routes(); //Auth::routes();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment