2014-05-04 08:34:13 +02:00
<!-- This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see < http: / / www . gnu . org / licenses / > .
-->
2014-01-10 08:48:05 +01:00
< html >
< head >
< title > TextSecure Options< / title >
2014-06-01 22:22:34 +02:00
< link rel = "stylesheet" href = "css/options.css" >
< link rel = "stylesheet" href = "css/forms.css" >
< link rel = "stylesheet" href = "css/buttons.css" >
2014-01-10 08:48:05 +01:00
< / head >
2014-01-22 07:23:41 +01:00
< body data-name = "curve25519" data-tools = "pnacl" data-configs = "Debug Release" data-path = "pnacl/{config}" >
< div id = "listener" > < / div >
< div id = "log" > < / div >
2014-06-02 00:15:38 +02:00
< h1 > < img id = "textsecure-icon" src = 'icon.png' / > TextSecure< / h1 >
< div id = "init-setup" class = "hidden" >
2014-05-21 06:44:58 +02:00
< h2 > Welcome to TextSecure. To get started please get a 6-digit setup code from your phone and enter it below.< / h2 >
2014-06-01 22:22:34 +02:00
< p > Phone number (including country code): +< input type = "text" maxlength = 3 size = "3" id = "countrycode" / > < input type = "text" maxlength = 14 size = "14" id = "number" / > < / p >
< button id = "init-go-single-client" class = "btn" > Send single-client code< / button >
2014-06-02 00:15:38 +02:00
< div id = "init-setup-verification" class = "hidden" >
2014-06-01 22:22:34 +02:00
< p > Code: < input type = "text" pattern = "[0-9]{3}-?[0-9]{3}" title = "Enter the 6-didgit verificaion code displayed on your phone." size = "8" id = "code" / > < / p >
< button id = "init-go" class = "btn" > Sync< / button >
< / div >
2014-01-10 08:48:05 +01:00
< / div >
2014-06-02 00:15:38 +02:00
< div id = "verify" class = "hidden" >
2014-01-10 08:48:05 +01:00
< div id = "verify1" > Verifying number and setup code...< span id = "verify1done" > < / span > < / div >
2014-01-17 07:08:33 +01:00
< div id = "verify2" > Syncing with existing devices...< span id = "verify2done" > < / span > < / div >
< div id = "verify3" > Generating keys...< span id = "verify3done" > < / span > < / div >
< div id = "verify4" > Registering...< span id = "verify4done" > < / span > < / div >
2014-01-10 08:48:05 +01:00
< / div >
2014-06-02 00:15:38 +02:00
< div id = "setup-complete" class = "hidden" >
2014-01-10 08:48:05 +01:00
< h2 > You are now registered on TextSecure with number < span id = "complete-number" > < / span > < / h2 >
< / div >
2014-01-22 07:23:41 +01:00
< script type = "text/javascript" src = "js-deps/nacl-common.js" > < / script >
2014-01-22 04:28:35 +01:00
< script type = "text/javascript" src = "js-deps/jquery.js" > < / script >
2014-03-10 01:54:44 +01:00
< script type = "text/javascript" src = "js-deps/core.js" > < / script >
< script type = "text/javascript" src = "js-deps/enc-base64.js" > < / script >
< script type = "text/javascript" src = "js-deps/cipher-core.js" > < / script >
2014-01-22 04:28:35 +01:00
< script type = "text/javascript" src = "js-deps/aes.js" > < / script >
2014-03-10 01:54:44 +01:00
< script type = "text/javascript" src = "js-deps/mode-ctr-min.js" > < / script >
< script type = "text/javascript" src = "js-deps/pad-nopadding.js" > < / script >
2014-01-22 04:28:35 +01:00
< script type = "text/javascript" src = "js-deps/hmac-sha256.js" > < / script >
2014-03-10 01:32:00 +01:00
< script type = "text/javascript" src = "js-deps/curve255.js" > < / script >
2014-01-22 04:28:35 +01:00
< script type = "text/javascript" src = "js-deps/lib-typedarrays.js" > < / script >
< script type = "text/javascript" src = "js-deps/Long.min.js" > < / script >
< script type = "text/javascript" src = "js-deps/ByteBuffer.min.js" > < / script >
< script type = "text/javascript" src = "js-deps/ProtoBuf.min.js" > < / script >
2014-06-01 19:39:35 +02:00
< script type = "text/javascript" src = "js-deps/underscore.js" > < / script >
< script type = "text/javascript" src = "js-deps/backbone.js" > < / script >
< script type = "text/javascript" src = "js-deps/backbone.localStorage.js" > < / script >
< script type = "text/javascript" src = "js/helpers.js" > < / script >
< script type = "text/javascript" src = "js/webcrypto.js" > < / script >
2014-05-11 23:44:32 +02:00
< script type = "text/javascript" src = "js/crypto.js" > < / script >
2014-06-01 19:39:35 +02:00
< script type = "text/javascript" src = "js/models/messages.js" > < / script >
< script type = "text/javascript" src = "js/models/threads.js" > < / script >
2014-03-11 09:21:28 +01:00
< script type = "text/javascript" src = "js/api.js" > < / script >
2014-05-21 04:21:07 +02:00
< script type = "text/javascript" src = "js/chromium.js" > < / script >
2014-05-21 06:35:23 +02:00
< script type = "text/javascript" src = "js/options.js" > < / script >
2014-01-10 08:48:05 +01:00
< / body >
< / html >