-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
95 lines (92 loc) · 3.58 KB
/
home.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>Projects</title>
<!-- Bootstrap core CSS -->
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="node_modules/font-awesome/css/font-awesome.css" rel="stylesheet" type="text/css">
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
</head>
<body class="bg-success">
<nav class="navbar navbar-toggleable-md bg-white fixed-top">
<a class="navbar-brand" href="#"><img src="images/ebryx-logo.png" width="118" height="27" alt="Ebryx" title="Ebryx"></a>
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="home.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="users.html">Users</a>
</li>
</ul>
</div>
</nav>
<div class="container-fluid">
<div class="content-container">
<div>
<h2 class="heading">Projects</h2>
<span class="pull-right task-link"><a href="add-project.html">Add New Project</a></span>
<div>
<table class="table bg-white">
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>Description</th>
<th>Documents</th>
<th>Team lead</th>
<th>Members</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>xyz</td>
<td>Projects xyz</td>
<td><a href="#">etc.pdf</a>,<a href="#">etc.doc</a></td>
<td>Salman Khan</td>
<td>Saqib Dogar, Kabir Sagheer</td>
<td><a href="project.html"><i class="fa fa-eye" aria-hidden="true"></i></a></td>
</tr>
<tr>
<th scope="row">2</th>
<td>pqr</td>
<td>Projects pqr</td>
<td><a href="#">etc.pdf</a>,<a href="#">etc.doc</a></td>
<td>Salman Khan</td>
<td>Saqib Dogar, Kabir Sagheer</td>
<td><a href="project.html"><i class="fa fa-eye" aria-hidden="true"></i></a></td>
</tr>
<tr>
<th scope="row">3</th>
<td>xyz</td>
<td>Projects cty</td>
<td><a href="#">etc.pdf</a>,<a href="#">etc.doc</a></td>
<td>Salman Khan</td>
<td>Saqib Dogar, Kabir Sagheer</td>
<td><a href="project.html"><i class="fa fa-eye" aria-hidden="true"></i></a></td>
</tr>
<tr>
<th scope="row">4</th>
<td>007</td>
<td>Projects 007</td>
<td><a href="#">etc.pdf</a>,<a href="#">etc.doc</a>,<a href="#">etc.ppt</a></td>
<td>Salman Khan</td>
<td>Saqib Dogar, Kabir Sagheer</td>
<td><a href="project.html"><i class="fa fa-eye" aria-hidden="true"></i></a></td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>