-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patholdindex.php
49 lines (47 loc) · 1.76 KB
/
oldindex.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
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<?php
include("res/php/auth.php");
include("res/php/loadfunc.php");
include("res/php/links.php");
?>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="brand" href="./index.php">JamWalkr</a>
<ul class="nav">
<li class="active"><a href="./index.php"><i class="icon-home icon-white"></i></a></li>
<li><a href="./ajax.php"><i class="icon-music icon-white"></i></a></li>
<li><a href="./8tracks.php"><i class="icon-headphones icon-white"></i></a></li>
<li><a href="./map.php"><i class="icon-map-marker icon-white"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="container-fluid" style="margin-top: 50px;">
<div class="row-fluid">
<div class="span2">
<ul class="nav nav-pills nav-stacked">
<li class="active"><a href="./index.php"><i class="icon-home"></i> Home</a></li>
<li><a href="./ajax.php"><i class="icon-music"></i> AJAX</a></li>
<li><a href="./8tracks.php"><i class="icon-headphones"></i> 8Tracks API</a></li>
<li><a href="./map.php"><i class="icon-map-marker"></i> Google Maps API</a></li>
</ul>
</div>
<div class="span10">
<h1>JamWalkr</h1>
<p class="lead">The Music Tagging Project</p>
<p>For Deliverable III, select the tabs to the left (12 December 2012). In this deliverable we should be able to:</p>
<ul>
<li>Display information collected in a visualizing manner</li>
<li>User Profile creation, modification, and deletion</li>
<li>Integration of tags and profiles</li>
</ul>
</div>
</div>
</div>
</body>
</html>