2014-05-04 08:34:13 +02:00
<!-- This program is free software: you can redistribute it and/or modify
2014-06-03 22:13:59 +02:00
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.
2014-05-04 08:34:13 +02:00
2014-06-03 22:13:59 +02:00
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.
2014-05-04 08:34:13 +02:00
2014-06-03 22:13:59 +02:00
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-05-04 08:34:13 +02:00
-->
2014-06-30 00:15:27 +02:00
<!DOCTYPE html>
2014-01-10 08:48:05 +01:00
< html >
< head >
< title > TextSecure Options< / title >
2014-06-30 00:15:27 +02:00
< meta charset = "utf-8" >
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-30 00:15:27 +02:00
< span > Please select your country:< / span >
< select id = "regionCode" >
< option value = "ZZ" selected > Please choose your country.< / option >
< / select >
< span id = "phonenumberspan" > Enter your phone number (including country code): + < input type = "text" size = "3" id = "countrycode" > < input type = "text" size = "14" id = "number" > < / span >
2014-06-01 22:22:34 +02:00
< 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-06-03 22:13:59 +02:00
< script type = "text/javascript" src = "js-deps/CryptoJS.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/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 >
2014-06-30 00:15:27 +02:00
< script type = "text/javascript" src = "js-deps/libphonenumber_api-compiled.js" > < / script >
2014-06-01 19:39:35 +02:00
< 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-06-03 18:39:29 +02:00
< script type = "text/javascript" src = "js/sendmessage.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 >