You are on page 1of 1

1 <!

DOCTYPE html>
2 <html>
3 <title>Doc Mgmt</title>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1">
6 <link rel="stylesheet" href="css/w3.css">
7 <style>
8 body,h1,h2,h3,h4,h5,h6 {font-family: "Raleway", sans-serif}
9 </style>
10 <body class="w3-light-grey w3-content" style="max-width:1600px">
11 <!-- Sidebar/menu -->
12 <?php include('php/nav.php'); ?>
13 <!-- Overlay effect when opening sidebar on small screens -->
14 <div class="w3-overlay w3-hide-large w3-animate-opacity" onclick="w3_close()"
style="cursor:pointer" title="close side menu" id="myOverlay"></div>
15 <!-- !PAGE CONTENT! -->
16 <div class="w3-main" style="margin-left:250px">
17 <!-- Header -->
18 <?php include('php/header.php'); ?>
19
20 <!-- alert-->
21 <div class="w3-row-padding">
22 <br/>
23 <?php
24 if(isset($_GET['success']) && $_GET['success'] == 'true')
25 {
26 ?>
27 <div class="alert alert-success">
28 <?php
29 echo "Uploaded sucessfully";
30 ?>
31 </div>
32 <?php
33 }
34
35 if(isset($_GET['success']) && $_GET['success'] == 'type')
36 {
37 ?>
38 <div class="alert alert-danger">
39 <?php
40 echo "File type not match!!!";
41 ?>
42 </div>
43 <?php
44 }
45 ?>
46 <!-- php include file-->
47 <?php include('php/upload.php'); ?>
48 </div>
49
50 <!-- php include file-->
51 <?php include('php/design.php'); ?>
52
53 <!-- php include file - Footer -->
54 <?php include('php/footer.php'); ?>
55
56
57 <!-- End page content -->
58 </div>
59 </body>
60 </html>

You might also like