XMPP invitation landing page, without javascript
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width, initial-scale=1, user-scalable=0" name="viewport">
<title>XMPP Invitation</title>
<link href="stylesheets/bootstrap.min.css" rel="stylesheet">
<link href="stylesheets/i.css" rel="stylesheet">
<style>
.main {
padding-top: 0px;
max-width: 600px;
width: 90%;
margin: 0 auto;
}
</style>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body onload="load_done();">
<div class="main">
<noscript><h3>You need JavaScript to follow the invitation.</h3></noscript>
<h3 class="text-center" id="heading"></h3>
<p class="lead text-center" id="intro"></p>
<p class="text-center"><a class="btn btn-primary" id="button"></a></p>
<input type="url" class="form-control text-center" id="url_in" size=50 onfocus="this.select();"></input>
<p class="lead text-center" id="clients"></p>
<p class="lead" id="recommend"></p>
<ul class="lead" id="client_list"></ul>
<p class="lead" id="checkfulllist"></p>
<p id="xmppis"></p>
</div>
<script src="scripts/i18n-text.min.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>
|