forked from openwisp/OpenWISP-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
149 lines (147 loc) · 5.49 KB
/
demo.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>OpenWISP Demo</title>
<meta name="description" content="OpenWISP Demo site instructions.">
<link rel="stylesheet" href="css/reset.css" type="text/css">
<link rel="stylesheet" href="css/semantic.min.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen">
<link rel="icon" type="image/x-icon" href="images/favicon.png" />
</head>
<body class="content readable">
<div class="ui sidebar vertical menu">
<a class="item" href="index.html">Home</a>
<a class="item" href="whatis.html">Features</a>
<a class="item" href="history.html">History</a>
<a class="item" href="support.html">Support</a>
<a class="item" href="https://openwisp.io/docs">Docs</a>
<a class="item" href="thecode.html">Code</a>
<a class="item" href="about.html">People</a>
</div>
<div class="pusher">
<div class="ui grid" id="top-bar">
<div class="ui computer only column sixteen wide">
<div class="ui center aligned container secondary menu">
<h1 class="item logo">
<a href="./">OpenWISP</a>
</h1>
<div class="right menu">
<a class="item" href="index.html">Home</a>
<a class="item" href="whatis.html">Features</a>
<a class="item" href="history.html">History</a>
<a class="item" href="https://openwisp.io/docs">Docs</a>
<a class="item" href="support.html">Support</a>
<a class="item" href="thecode.html">Code</a>
<a class="item" href="about.html">People</a>
</div>
</div>
</div>
<div class="ui mobile tablet only sixteen wide column">
<div class="ui menu">
<h1 class="item logo">
<a href="./">OpenWISP</a>
</h1>
<div class="right menu">
<div class="menu-open item">
<i class="sidebar icon"></i>
</div>
</div>
</div>
</div>
</div>
<div class="ui grid" id="main">
<article class="ui container">
<h1>OpenWISP Demo</h1>
<p>
<a href="https://openwisp.io/docs/tutorials/demo.html">
<img src="images/demo.png"
alt="OpenWISP Demo"
width="100%">
</a>
</p>
<p>
Key points to know before starting:
</p>
<ul class="ui bulleted link list">
<li>
The demo organization's content is reset daily at 1:00 AM UTC.
</li>
<li>
The demo user's password is reset every minute.
</li>
<li>
The demo user has other limitations, explained in the
<a href="https://openwisp.io/docs/tutorials/demo.html">
OpenWISP Demo Tutorial</a>.
</li>
<li>
The OpenWISP Demo is a special organization (e.g. tenant)
in the <em>OpenWISP Cloud Service</em>.
</li>
</ul>
<p class="center">
<b>Username</b>: demo<br>
<b>Password</b>: tester123<br>
</p>
<p class="center buttons">
<a href="https://demo.openwisp.io"
class="ui big button inverted red"
target="_blank">
<i class="play icon"></i>
Access the Demo
</a>
<a href="https://openwisp.io/docs/tutorials/demo.html"
class="ui big button inverted red">
<i class="book icon"></i>
Read the Tutorial
</a>
</p>
<p class="center" style="margin-top:10px">
<small>For information on data processing, consult our
<a href="https://cloud.openwisp.io/terms-of-service.pdf">Terms of Service</a>
and <a href="https://cloud.openwisp.io/privacy-policy.pdf">Privacy Policy</a>.
</small>
</p>
<h2>Connecting your devices</h2>
<p>
If you're wondering what to do next, check out the
<a href="https://openwisp.io/docs/tutorials/demo.html">
OpenWISP Demo Tutorial</a>.
</p>
</article>
</div>
<div class="ui black inverted segment padding-vertical" id="footer">
<div class="ui container stackable two column grid">
<div class="column logo white">
<a href="./">OpenWISP</a>
</div>
<div class="column social">
<a href="https://twitter.com/openwisp" class="ui twitter button">
<i class="twitter icon"></i>
Twitter
</a>
<a href="https://facebook.com/openwisp" class="ui facebook button">
<i class="facebook icon"></i>
Facebook
</a>
<a href="https://www.linkedin.com/company/openwisp" class="ui linkedin button">
<i class="linkedin icon"></i>
Linked In
</a>
<a href="https://github.com/openwisp" class="ui black button">
<i class="github icon"></i> Github
</a>
</div>
<p>© 2008-<script>document.write(new Date().getFullYear())</script> OpenWISP and individual contributors.</p>
</div>
</div>
</div>
<script src="js/jquery-3.7.1.min.js"></script>
<script src="js/semantic.min.js"></script>
<script src="js/scripts.js"></script>
<script defer src="js/iconify.min.js"></script>
<script defer src="js/showdown.min.js"></script>
</body>
</html>