-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstream-view.php
More file actions
56 lines (43 loc) · 1.72 KB
/
stream-view.php
File metadata and controls
56 lines (43 loc) · 1.72 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
<!DOCTYPE html>
<html>
<head>
<title>Stream View Screen</title>
<link rel="apple-touch-icon" href="appicon.png" />
<link rel="apple-touch-startup-image" href="startup.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="viewport" content="width=device-width, user-scalable=no" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<link href="style.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="chosen/chosen.css" />
<script src="chosen/chosen.jquery.js" type="text/javascript"></script>
</head>
<body>
<div class="logout-button">
<form action="login.php" id="someform" method="get">
<input type="submit" class="bottom-bar-button" value="Log Out"/>
</form>
</div>
</br>
<div class="title">
<h1>Stream View</h1>
</div>
<div class="explanation">
<p>Here is where people can create 'playlists' or filters of their blogs that they can see in a visually-pleasing, cascading view.</p>
</div>
<div class="buttonbar">
<form action="myblogs.php" id="someform" method="get">
<input type="submit" class="bottom-bar-button" value="My Blogs" />
</form>
<form action="discover.php" id="someform" method="get">
<input type="submit" class="bottom-bar-button" value="Discover"/>
</form>
<form action="stream-view.php" id="someform" method="get">
<input type="submit" class="bottom-bar-button" value="Stream View"/>
</form>
<form action="settings.php" id="someform" method="get">
<input type="submit" class="bottom-bar-button" value="Settings"/>
</form>
</div>
</body>
</html>