diff options
author | Pacien TRAN-GIRARD | 2014-05-15 16:00:45 +0200 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2014-05-15 16:00:45 +0200 |
commit | d8bae84fff7977844fa2b57b15b86a831b73aed2 (patch) | |
tree | d243a1729f0239421c6454f0b76243b6e1729ce7 /views/channel.html | |
parent | 4f21da45d77211da1aab786bceda8b19f9ccbcbc (diff) | |
download | webcastor-d8bae84fff7977844fa2b57b15b86a831b73aed2.tar.gz |
First version
Diffstat (limited to 'views/channel.html')
-rw-r--r-- | views/channel.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/views/channel.html b/views/channel.html new file mode 100644 index 0000000..a1c13b5 --- /dev/null +++ b/views/channel.html | |||
@@ -0,0 +1,28 @@ | |||
1 | <h2>Create a channel</h2> | ||
2 | |||
3 | <h3>Channel created with given password</h3> | ||
4 | |||
5 | <form> | ||
6 | <label for="channel">Channel ID</label> | ||
7 | <input type="text" value="{{channel}}" readonly id="channel"> | ||
8 | <br> | ||
9 | <label for="url">URL</label> | ||
10 | <input type="text" value="{{url}}" readonly id="url"> | ||
11 | </form> | ||
12 | |||
13 | <style type="text/css"> | ||
14 | label { | ||
15 | display: inline-block; | ||
16 | width: 100px; | ||
17 | } | ||
18 | </style> | ||
19 | |||
20 | <script type="text/javascript"> | ||
21 | channel.addEventListener("click", function(event) { | ||
22 | this.select(); | ||
23 | }); | ||
24 | |||
25 | url.addEventListener("click", function(event) { | ||
26 | this.select(); | ||
27 | }); | ||
28 | </script> | ||