-
Notifications
You must be signed in to change notification settings - Fork 3
/
admin.html
46 lines (38 loc) · 1.51 KB
/
admin.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>Realtime: Storefy</title>
<link rel="stylesheet" media="all" href="css/styles.css">
<script src="//messaging-public.realtime.co/js/2.1.0/ortc.js"></script>
<script src="js/admin.js"></script>
</head>
<body lang="en">
<header>
<a href="index.html"><h1>Storefy</h1></a>
<h2>a realtime demo using Realtime</h2>
<h3>You’re currently browsing a <a href="http://www.realtime.co/" target="_blank">Realtime®</a> demo using <a href="http://framework.realtime.co/messaging/" target="_blank">Realtime Cloud Messaging</a>.</h3>
</header>
<article>
<h2 style="margin-bottom: 20px;">Price Update</h2>
<fieldset>
<div>
<label for="Price">
Old price: <input type="text" id="oldPrice" value="19.99" />
New price: <input type="text" id="newPrice" value="" />
<input type="button" onclick="updatePrice();" style="cursor: pointer;" value="Update price »" />
</label>
</div>
</fieldset>
<h2 style="margin-top: 30px; margin-bottom: 20px;">Stock Update</h2>
<fieldset>
<div>
<input type="button" onclick="decreaseStock();" style="cursor: pointer;" value="Decrease Stock »" />
</div>
</fieldset>
</article>
<footer>
<p id="status" style="color: white">disconnected</h2>
</footer>
</body>
</html>