From 43f1a61e8ae19f3cb01d4e4f3abb6711b501fc2f Mon Sep 17 00:00:00 2001 From: Georg Lukas Date: Sun, 1 Jan 2017 22:34:14 +0100 Subject: Initial code commit: WARNING, FUGLY JAVASCRIPT --- index.html | 121 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ lang/en.json | 21 ++++++++++ stylesheets/i.css | 20 +++++++++ 3 files changed, 162 insertions(+) create mode 100644 index.html create mode 100644 lang/en.json create mode 100644 stylesheets/i.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..f8b9baf --- /dev/null +++ b/index.html @@ -0,0 +1,121 @@ + + + + + + + + + XMPP Invitation + + + + + + + +
+ +

+

+

+ +

+

+ + + +

+

+
+ + diff --git a/lang/en.json b/lang/en.json new file mode 100644 index 0000000..41d7305 --- /dev/null +++ b/lang/en.json @@ -0,0 +1,21 @@ +{ + "chat": { + "title": "Invitation from {{name}}", + "heading": "{{name}} has invited you to chat", + "intro": "Add {{name}} to your contact list by clicking the following link:", + "button": "Add {{name}}", + "":"" + }, + "muc": { + "title": "Invitation to {{name}}", + "heading": "You have been invited to {{name}}", + "intro": "Join the chat room {{name}} by clicking the following link:", + "button": "Join {{name}}", + "":"" + }, + "clients": "If this link does not work, you need to install and configure an XMPP client, and visit this page again afterwards.", + "recommend": "On Android we recommend one of:", + "checkfulllist": "Check the full list of XMPP clients for other platforms.", + "xmppis": "XMPP is a provider independent form of instant messaging. You can pick from many different clients and have a free choice of server operators to participate.", + "":"" +} diff --git a/stylesheets/i.css b/stylesheets/i.css new file mode 100644 index 0000000..574cf79 --- /dev/null +++ b/stylesheets/i.css @@ -0,0 +1,20 @@ +body { + background: #f8f8f8; + color: #000000; +} +a { + color: #1863a1; +} +.btn-primary { + background: #252e3f; + color: #f2f2f2; +} +.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { + background: #353e5f; + color: #b7c1d5; + box-shadow: none; +} +.btn-primary:active, .btn-primary.active { + background: #353e5f; + box-shadow: none; +} -- cgit 1.4.1