index.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta content="IE=edge" http-equiv="X-UA-Compatible">
  6. <meta content="width=device-width, initial-scale=1, user-scalable=0" name="viewport">
  7. <title>XMPP Invitation</title>
  8. <link href="stylesheets/styles.css" rel="stylesheet">
  9. <link href="stylesheets/i.css" rel="stylesheet">
  10. <style>
  11. .main {
  12. padding-top: 0px;
  13. max-width: 600px;
  14. width: 90%;
  15. margin: 0 auto;
  16. }
  17. </style>
  18. <!--[if lt IE 9]>
  19. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  20. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  21. <![endif]-->
  22. </head>
  23. <body>
  24. <div class="main">
  25. <noscript><h3>You need JavaScript to follow the invitation.</h3></noscript>
  26. <h3 class="text-center" id="heading"></h3>
  27. <p class="text-center"><a class="btn btn-primary" id="button"></a></p>
  28. <input type="url" class="form-control text-center" id="url_in" readonly/>
  29. <div class="qrcode" id="qrcode"></div>
  30. <p class="lead text-center" id="clients"></p>
  31. <p class="lead text-center" id="recommend"></p>
  32. <p class="lead img-center text-center" id="client_list"></p>
  33. <i>
  34. <p class="hint text-center" id="checkfulllist"></p>
  35. <p class="hint text-center" id="xmppis"></p>
  36. </i>
  37. <p class="hint text-center" id="xmpp"></p>
  38. </div>
  39. <script src="scripts/i18n-text.min.js"></script>
  40. <script src="config.js"></script>
  41. <script src="scripts/main.js"></script>
  42. <script src="scripts/qrcode.min.js"></script>
  43. </body>
  44. </html>