-
Notifications
You must be signed in to change notification settings - Fork 0
/
uploadSuccess.php
38 lines (32 loc) · 987 Bytes
/
uploadSuccess.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>LeagueLights Upload Video</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/shop-homepage.css" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<p class="navbar-brand">LeagueLights</p>
</div>
</nav>
<div class="container py-5">
<div class="row my-4">
<div class="col-lg-3"></div>
<h4 class="text-center col-lg-6">You have successfully uploaded the video! Please close this window and refresh the page.</h4>
<div class="col-lg-3"></div>
</div>
</div>
</body>
</html>