-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make server side style subscriber explicit and not automatic (#29)
* Move to explicit server side style subscriber use * Move to explicit server side style subscriber use
- Loading branch information
Showing
5 changed files
with
85 additions
and
14 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
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
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
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
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,50 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<title>SignalWire CF Client Beta</title> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | ||
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous"> | ||
|
||
<script type="text/javascript" src="https://webrtc.github.io/adapter/adapter-latest.js"></script> | ||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pako/2.1.0/pako.min.js"></script> | ||
</head> | ||
|
||
<body> | ||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark"> | ||
<div class="container"> | ||
<a class="navbar-brand" href="#">SignalWire CF Client Beta</a> | ||
<ul class="navbar-nav"> | ||
<li class="nav-item active"> | ||
<a class="nav-link" href="/">Full</span></a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="/minimal">Minimal</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="/oauth">OAuth</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="/subscriber">Subscriber Signin/Signup</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
|
||
<div class="container mt-5"> | ||
<h2>Subscriber Signin/Signup</h2> | ||
<form action="/subscriber" method="post"> | ||
<div class="mb-3"> | ||
<label for="reference" class="form-label">Reference:</label> | ||
<input type="text" class="form-control" id="reference" name="reference"> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="password" class="form-label">Password:</label> | ||
<input type="password" class="form-control" id="password" name="password"> | ||
</div> | ||
<button type="submit" class="btn btn-primary">Submit</button> | ||
</form> | ||
</div> | ||
|
||
</body> | ||
</html> |