-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 7b867e1
Showing
9 changed files
with
124 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# party UI | ||
|
||
This is the UI used for the internal web server for Silent Protest |
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Silent Protest</title> | ||
<link href="css/bootstrap.min.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
|
||
<nav class="navbar navbar-inverse"> | ||
<div class="container-fluid"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> | ||
<span class="sr-only">Toggle navigation</span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
<a class="navbar-brand" href="#">Silent Protest</a> | ||
</div> | ||
<div id="navbar" class="navbar-collapse collapse"> | ||
<ul class="nav navbar-nav"> | ||
<!-- <li><a href="#">Stream</a></li> --> | ||
</ul> | ||
<ul class="nav navbar-nav navbar-right"> | ||
<li class="dropdown"> | ||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Options <span class="caret"></span></a> | ||
<ul class="dropdown-menu" role="menu"> | ||
<li><a href="silentprotest.pls">Download PLS Playlist</a></li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
|
||
<div class="jumbotron"> | ||
<div class="text-center"> | ||
<img style="filter: invert(70%); max-height: 100%; max-width: 100%" src="images/logo.png" alt="" /> | ||
<h1>Silent Protest</h1> | ||
<p>DIY Wearable Protest & Disco Network</p> | ||
</div> | ||
</div> | ||
|
||
<div class="panel panel-primary"> | ||
<div class="panel-heading"> | ||
<h3 class="panel-title">Live Stream</h3> | ||
</div> | ||
<div class="panel-body" id="node-info"> | ||
<div class="text-center"> | ||
<p>Live Stream here!</p> | ||
<audio controls src="/live;" autoplay></audio> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="col-md-6"> | ||
<div class="panel panel-info"> | ||
<div class="panel-heading"> | ||
<h3 class="panel-title">Chat Rooms</h3> | ||
</div> | ||
<div class="panel-body" id="node-info"> | ||
<a href="https://chat.party.silentprotest.io" target="_blank" class="btn"> | ||
<img style="max-height: 70%; max-width: 70%" src="images/lets-chat.png" alt="" /> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="col-md-6"> | ||
<div class="panel panel-success"> | ||
<div class="panel-heading"> | ||
<h3 class="panel-title">Video Confrence</h3> | ||
</div> | ||
<div class="panel-body" id="node-info"> | ||
<a href="https://video.party.silentprotest.io/main" target="_blank" class="btn"> | ||
<img style="max-height: 70%; max-width: 70%" src="images/hublin.png" alt="" /> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<footer> | ||
<hr> | ||
<div class="row"> | ||
<div class="col-xs-12 text-center"><a href="https://silentprotest.io">Silent Protest ♥</a></div> | ||
</div> | ||
</footer> | ||
</div> <!-- /container--> | ||
|
||
<script src="js/jquery-1.11.3.min.js"></script> | ||
<script src="js/bootstrap.min.js"></script> | ||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.