-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinvestor.php
More file actions
139 lines (130 loc) · 5.31 KB
/
investor.php
File metadata and controls
139 lines (130 loc) · 5.31 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php include('function.php');?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale = 1.0, maximum-scale = 1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- -Page Title- -->
<title>investorCompany</title>
<!-- ====== -Google Fonts- ====== -->
<link href="https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800" rel="stylesheet">
<!-- ====== -End Google Fonts- ====== -->
<!-- ====== -CSS- ====== -->
<!-- -Normalize css- -->
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<!-- -Animate css- -->
<link rel="stylesheet" type="text/css" href="css/animate.css">
<!-- -Font Awesome- -->
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<!-- -Ionicons- -->
<link rel="stylesheet" type="text/css" href="css/ionicons.min.css">
<!-- -Bootstrap v3.3.1- -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<!-- Slick -->
<link rel="stylesheet" href="css/slick.css">
<link rel="stylesheet" href="css/slick-theme.css">
<!-- Magnific Popup -->
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- -Custom style CSS- -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- -Custom responsive style CSS- -->
<link rel="stylesheet" type="text/css" href="css/responsive.css">
<!-- ====== -End CSS- ====== -->
<!-- -Favicon- -->
<link rel="shortcut icon" href="img/favicon.png">
<style>
body {
background: #1a1919;
color: white;
}
.logo img {
max-width: 200px;
}
</style>
</head>
<body>
<header class="header">
<div class="container">
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-6">
<div class="logo">
<img src="img/logo.png" alt="Logo">
</div>
</div>
<div class="col-lg-9 col-md-9 col-sm-6 col-xs-6">
<nav class="menu">
<ul>
<a href="/companyReg.php" ><li>Sign up</li></a>
<li><a href="/companyListing.php">Companies</a></li>
<li><a href="/investor.php">Investor</a></li>
</ul>
</nav>
<nav class="mobilenav">
<ul>
<li><a href="/companyReg.php">Sign up</a></li>
<li><a href="/companyListing.php">Companies</a></li>
<li><a href="/investor.php">Investor</a></li>
</ul>
</nav>
<a href="javascript:void(0)" class="icon">
<div class="hamburger">
<div class="menui top-menu"></div>
<div class="menui mid-menu"></div>
<div class="menui bottom-menu"></div>
</div>
</a>
</div>
</div>
</header>
<div class="container" style = "padding-top: 200px">
<div class="row">
<div class="col-md-4"> <img src="img/investor.jpg" alt="investor picture" class="img-thumbnail"> </div>
<div class="col-md-8">
<h1 style="text-align: center">Investor Name</h1>
<table class="table table-bordered">
<thead style="font-weight: bold">
<td>Id</td>
<td>Company Name</td>
<td>Amount Invested</td>
<td>Percentage Share</td>
<td>Return</td>
</thead>
<?php investor(); ?>
</table>
</div>
</div>
</div>
<!-- ==== JAVASCRIPT FILES ==== -->
<!-- Jquery -->
<script src="js/jquery-2.2.4.min.js"></script>
<!-- Owl Carousel -->
<script src="js/owlcarousel/owl.carousel.min.js"></script>
<!-- Slick Slider -->
<script src="js/slick.min.js"></script>
<!-- YouTube Video -->
<script src="js/jquery.youtubebackground.js"></script>
<!-- Smooth scroll -->
<script src="js/smooth-scroll.js"></script>
<!-- Parallax -->
<script src="js/parallax.min.js"></script>
<!-- Maginific Popup Modal -->
<script src="js/jquery.magnific-popup.min.js"></script>
<!-- jQuery Filterizr -->
<script src="js/jquery.filterizr.js"></script>
<!-- Custom -->
<script src="js/custom.js"></script>
<script>
$('header').parallax();
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','../www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-103797393-1', 'auto');
ga('send', 'pageview');
</script>
<!-- ==== END JAVASCRIPT FILES ==== -->
</body>
<!-- Mirrored from aya.unomiathemes.com/index.html by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 17 Aug 2017 06:13:12 GMT -->
</html>