├── LICENSE ├── README.md ├── wallet_dark ├── License.txt ├── README.txt ├── config.inc.php ├── css │ ├── images │ │ ├── ajax-loader.gif │ │ └── icons-png │ │ │ ├── action-black.png │ │ │ ├── action-white.png │ │ │ ├── alert-black.png │ │ │ ├── alert-white.png │ │ │ ├── arrow-d-black.png │ │ │ ├── arrow-d-l-black.png │ │ │ ├── arrow-d-l-white.png │ │ │ ├── arrow-d-r-black.png │ │ │ ├── arrow-d-r-white.png │ │ │ ├── arrow-d-white.png │ │ │ ├── arrow-l-black.png │ │ │ ├── arrow-l-white.png │ │ │ ├── arrow-r-black.png │ │ │ ├── arrow-r-white.png │ │ │ ├── arrow-u-black.png │ │ │ ├── arrow-u-l-black.png │ │ │ ├── arrow-u-l-white.png │ │ │ ├── arrow-u-r-black.png │ │ │ ├── arrow-u-r-white.png │ │ │ ├── arrow-u-white.png │ │ │ ├── audio-black.png │ │ │ ├── audio-white.png │ │ │ ├── back-black.png │ │ │ ├── back-white.png │ │ │ ├── bars-black.png │ │ │ ├── bars-white.png │ │ │ ├── bullets-black.png │ │ │ ├── bullets-white.png │ │ │ ├── calendar-black.png │ │ │ ├── calendar-white.png │ │ │ ├── camera-black.png │ │ │ ├── camera-white.png │ │ │ ├── carat-d-black.png │ │ │ ├── carat-d-white.png │ │ │ ├── carat-l-black.png │ │ │ ├── carat-l-white.png │ │ │ ├── carat-r-black.png │ │ │ ├── carat-r-white.png │ │ │ ├── carat-u-black.png │ │ │ ├── carat-u-white.png │ │ │ ├── check-black.png │ │ │ ├── check-white.png │ │ │ ├── clock-black.png │ │ │ ├── clock-white.png │ │ │ ├── cloud-black.png │ │ │ ├── cloud-white.png │ │ │ ├── comment-black.png │ │ │ ├── comment-white.png │ │ │ ├── delete-black.png │ │ │ ├── delete-white.png │ │ │ ├── edit-black.png │ │ │ ├── edit-white.png │ │ │ ├── eye-black.png │ │ │ ├── eye-white.png │ │ │ ├── forbidden-black.png │ │ │ ├── forbidden-white.png │ │ │ ├── forward-black.png │ │ │ ├── forward-white.png │ │ │ ├── gear-black.png │ │ │ ├── gear-white.png │ │ │ ├── grid-black.png │ │ │ ├── grid-white.png │ │ │ ├── heart-black.png │ │ │ ├── heart-white.png │ │ │ ├── home-black.png │ │ │ ├── home-white.png │ │ │ ├── info-black.png │ │ │ ├── info-white.png │ │ │ ├── location-black.png │ │ │ ├── location-white.png │ │ │ ├── lock-black.png │ │ │ ├── lock-white.png │ │ │ ├── mail-black.png │ │ │ ├── mail-white.png │ │ │ ├── minus-black.png │ │ │ ├── minus-white.png │ │ │ ├── navigation-black.png │ │ │ ├── navigation-white.png │ │ │ ├── phone-black.png │ │ │ ├── phone-white.png │ │ │ ├── plus-black.png │ │ │ ├── plus-white.png │ │ │ ├── power-black.png │ │ │ ├── power-white.png │ │ │ ├── recycle-black.png │ │ │ ├── recycle-white.png │ │ │ ├── refresh-black.png │ │ │ ├── refresh-white.png │ │ │ ├── search-black.png │ │ │ ├── search-white.png │ │ │ ├── shop-black.png │ │ │ ├── shop-white.png │ │ │ ├── star-black.png │ │ │ ├── star-white.png │ │ │ ├── tag-black.png │ │ │ ├── tag-white.png │ │ │ ├── user-black.png │ │ │ ├── user-white.png │ │ │ ├── video-black.png │ │ │ └── video-white.png │ ├── jquery.mobile-1.4.5.min.css │ └── m_phpbitadmin.css ├── getpaid.php ├── home.php ├── images │ ├── BitCoin_L.png │ ├── bitcoin2.png │ ├── bitcoind.png │ ├── check-green.png │ ├── check-red.png │ ├── coins-icon.png │ └── qr.png ├── index.php ├── js │ ├── html5-qrcode.js │ ├── html5-qrcode.min.js │ ├── jquery-1.11.1.min.js │ ├── jquery.mobile-1.4.5.min.js │ ├── jquery.qrcode.min.js │ └── qrcode.php ├── pay.php ├── php │ ├── phpSend.php │ └── phpbitadmin.class.php ├── scan.php ├── settings.php └── transactions.php └── wallet_light ├── License.txt ├── README.txt ├── config.inc.php ├── css ├── images │ ├── ajax-loader.gif │ └── icons-png │ │ ├── action-black.png │ │ ├── action-white.png │ │ ├── alert-black.png │ │ ├── alert-white.png │ │ ├── arrow-d-black.png │ │ ├── arrow-d-l-black.png │ │ ├── arrow-d-l-white.png │ │ ├── arrow-d-r-black.png │ │ ├── arrow-d-r-white.png │ │ ├── arrow-d-white.png │ │ ├── arrow-l-black.png │ │ ├── arrow-l-white.png │ │ ├── arrow-r-black.png │ │ ├── arrow-r-white.png │ │ ├── arrow-u-black.png │ │ ├── arrow-u-l-black.png │ │ ├── arrow-u-l-white.png │ │ ├── arrow-u-r-black.png │ │ ├── arrow-u-r-white.png │ │ ├── arrow-u-white.png │ │ ├── audio-black.png │ │ ├── audio-white.png │ │ ├── back-black.png │ │ ├── back-white.png │ │ ├── bars-black.png │ │ ├── bars-white.png │ │ ├── bullets-black.png │ │ ├── bullets-white.png │ │ ├── calendar-black.png │ │ ├── calendar-white.png │ │ ├── camera-black.png │ │ ├── camera-white.png │ │ ├── carat-d-black.png │ │ ├── carat-d-white.png │ │ ├── carat-l-black.png │ │ ├── carat-l-white.png │ │ ├── carat-r-black.png │ │ ├── carat-r-white.png │ │ ├── carat-u-black.png │ │ ├── carat-u-white.png │ │ ├── check-black.png │ │ ├── check-white.png │ │ ├── clock-black.png │ │ ├── clock-white.png │ │ ├── cloud-black.png │ │ ├── cloud-white.png │ │ ├── comment-black.png │ │ ├── comment-white.png │ │ ├── delete-black.png │ │ ├── delete-white.png │ │ ├── edit-black.png │ │ ├── edit-white.png │ │ ├── eye-black.png │ │ ├── eye-white.png │ │ ├── forbidden-black.png │ │ ├── forbidden-white.png │ │ ├── forward-black.png │ │ ├── forward-white.png │ │ ├── gear-black.png │ │ ├── gear-white.png │ │ ├── grid-black.png │ │ ├── grid-white.png │ │ ├── heart-black.png │ │ ├── heart-white.png │ │ ├── home-black.png │ │ ├── home-white.png │ │ ├── info-black.png │ │ ├── info-white.png │ │ ├── location-black.png │ │ ├── location-white.png │ │ ├── lock-black.png │ │ ├── lock-white.png │ │ ├── mail-black.png │ │ ├── mail-white.png │ │ ├── minus-black.png │ │ ├── minus-white.png │ │ ├── navigation-black.png │ │ ├── navigation-white.png │ │ ├── phone-black.png │ │ ├── phone-white.png │ │ ├── plus-black.png │ │ ├── plus-white.png │ │ ├── power-black.png │ │ ├── power-white.png │ │ ├── recycle-black.png │ │ ├── recycle-white.png │ │ ├── refresh-black.png │ │ ├── refresh-white.png │ │ ├── search-black.png │ │ ├── search-white.png │ │ ├── shop-black.png │ │ ├── shop-white.png │ │ ├── star-black.png │ │ ├── star-white.png │ │ ├── tag-black.png │ │ ├── tag-white.png │ │ ├── user-black.png │ │ ├── user-white.png │ │ ├── video-black.png │ │ └── video-white.png ├── jquery.mobile-1.4.5.min.css ├── m_phpbitadmin.css └── m_phpbitadmin_light.css ├── getpaid.php ├── home.php ├── images ├── BitCoin_L.png ├── bitcoin2.png ├── bitcoind.png ├── check-green.png ├── check-red.png ├── coins-icon.png └── qr.png ├── index.php ├── js ├── html5-qrcode.js ├── html5-qrcode.min.js ├── jquery-1.11.1.min.js ├── jquery.mobile-1.4.5.min.js ├── jquery.qrcode.min.js └── qrcode.php ├── pay.php ├── php ├── phpSend.php └── phpbitadmin.class.php ├── scan.php ├── settings.php └── transactions.php /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Mark Patterson [www.bitadmin.net] 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in all 12 | copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 20 | SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | phpBitAdmin-Bitcoin-HTML5-Wallet 2 | ================================= 3 | 4 | Pure HTML5 Bitcoin Wallet with a PHP Backend. 5 | 6 | This is a cross-platform web application that allows any html5 enabled browser to access Bitcoin-Core. At it's core is a PHP RPC engine (cURL) that sends and receives commands to bitcoind. 7 | 8 | The front ends interface (javascript) is jQuery and jQuery Mobile. 9 | 10 | [live demo](http://phpbitadmin.com/mobile/) 11 | 12 | This web application makes use of WebRTC which allows a web browser to access a users web cam or native mobile camera. Because it can access a live video stream the ability to scan QR Codes for payment processing is possible. 13 | 14 | NOTE: Users must give permission to enable WebRTC. 15 | 16 | 17 | 18 | ------------------------------------------------------------------------------------------------------------------ 19 | The MIT License (MIT) 20 | 21 | Copyright (c) 2014 Mark J. Patterson 22 | 23 | Permission is hereby granted, free of charge, to any person obtaining a copy 24 | of this software and associated documentation files (the "Software"), to deal 25 | in the Software without restriction, including without limitation the rights 26 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 27 | copies of the Software, and to permit persons to whom the Software is 28 | furnished to do so, subject to the following conditions: 29 | 30 | The above copyright notice and this permission notice shall be included in 31 | all copies or substantial portions of the Software. 32 | 33 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 34 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 35 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 36 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 37 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 38 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 39 | THE SOFTWARE. 40 | -------------------------------------------------------------------------------- /wallet_dark/License.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Mark J. Patterson [www.phpbitadmin.net] 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | 23 | Donations: 17nqTBmCX451UkNSouHANqywkgarsT4MtQ -------------------------------------------------------------------------------- /wallet_dark/README.txt: -------------------------------------------------------------------------------- 1 | Welcome to phpBitAdmin - Bitcoind HTML5 Wallet 2 | 3 | This web application will run on any PHP enabled webserver. Only cURL 4 | must be enabled in PHP. Otherwise, it's good to go. 5 | 6 | Drop this web app anywhere in your webserver's directory. Open config.inc.php 7 | and enter the required parameters needed to access any particular bitcoind 8 | instance. 9 | 10 | On the target Bitcoin Server add a 'rpcallowip" directive to bitcoin.conf 11 | that points to the network ip address of the webserver running 12 | phpBitAdmin - Bitcoin Wallet. 13 | 14 | #[ex.] 15 | rpcallowip=10.0.0.15 16 | 17 | Where 10.0.0.15 is the address of the webserver. You may enter as many 18 | rpcallowip directives as necessary. Other important bitcoin.conf 19 | directives are as follows. Uncomment as desired. 20 | 21 | # server=1 tells Bitcoin to accept JSON-RPC commands. 22 | server=1 23 | 24 | # Listen for RPC connection on this TCP port: 25 | # Standard port: 26 | #rpcport=1832 27 | # Testnet port: 28 | #rpcport=18332 29 | 30 | # Run on the test network instead of the real bitcoin network. 31 | #testnet=3 32 | 33 | That's about all that is required in bitcoin.conf. You may want to check 34 | your firewall and open port 8332 || 18332 depending on which network your 35 | running the application against. 36 | 37 | Page 'pay.php' runs a qr code scanner directly inside a web page. It makes use 38 | of getUserMedia (WebRTC) so use of the latest browser is recommended. Safari 39 | an IE do not yet support it but it is coming soon on those browsers. This page 40 | also requires a web cam or native camera to function. 41 | 42 | NOTE: This web app contains downloaded versions of jQuery & jQuery Mobile. I made 43 | a conscience decision not to link to various repositories containing the libraries 44 | because issues are created when one accesses non-ssl from an ssl page. This app 45 | is not yet production-ready, but when it is this will be one less issue to resolve. 46 | -------------------------------------------------------------------------------- /wallet_dark/config.inc.php: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /wallet_dark/css/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/ajax-loader.gif -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/action-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/action-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/action-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/action-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/alert-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/alert-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/alert-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/alert-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/arrow-d-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/arrow-d-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/arrow-d-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/arrow-d-l-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/arrow-d-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/arrow-d-l-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/arrow-d-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/arrow-d-r-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/arrow-d-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/arrow-d-r-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/arrow-d-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/arrow-d-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/arrow-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/arrow-l-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/arrow-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/arrow-l-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/arrow-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/arrow-r-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/arrow-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/arrow-r-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/arrow-u-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/arrow-u-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/arrow-u-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/arrow-u-l-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/arrow-u-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/arrow-u-l-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/arrow-u-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/arrow-u-r-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/arrow-u-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/arrow-u-r-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/arrow-u-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/arrow-u-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/audio-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/audio-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/audio-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/audio-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/back-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/back-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/back-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/back-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/bars-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/bars-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/bars-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/bars-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/bullets-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/bullets-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/bullets-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/bullets-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/calendar-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/calendar-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/calendar-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/calendar-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/camera-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/camera-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/camera-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/camera-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/carat-d-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/carat-d-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/carat-d-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/carat-d-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/carat-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/carat-l-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/carat-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/carat-l-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/carat-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/carat-r-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/carat-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/carat-r-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/carat-u-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/carat-u-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/carat-u-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/carat-u-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/check-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/check-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/check-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/check-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/clock-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/clock-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/clock-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/clock-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/cloud-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/cloud-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/cloud-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/cloud-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/comment-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/comment-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/comment-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/comment-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/delete-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/delete-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/delete-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/delete-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/edit-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/edit-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/edit-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/edit-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/eye-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/eye-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/eye-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/eye-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/forbidden-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/forbidden-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/forbidden-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/forbidden-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/forward-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/forward-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/forward-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/forward-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/gear-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/gear-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/gear-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/gear-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/grid-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/grid-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/grid-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/grid-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/heart-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/heart-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/heart-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/heart-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/home-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/home-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/home-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/home-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/info-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/info-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/info-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/info-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/location-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/location-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/location-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/location-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/lock-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/lock-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/lock-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/lock-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/mail-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/mail-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/mail-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/mail-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/minus-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/minus-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/minus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/minus-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/navigation-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/navigation-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/navigation-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/navigation-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/phone-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/phone-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/phone-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/phone-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/plus-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/plus-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/plus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/plus-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/power-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/power-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/power-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/power-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/recycle-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/recycle-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/recycle-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/recycle-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/refresh-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/refresh-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/refresh-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/refresh-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/search-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/search-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/search-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/search-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/shop-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/shop-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/shop-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/shop-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/star-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/star-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/star-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/star-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/tag-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/tag-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/tag-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/tag-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/user-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/user-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/user-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/user-white.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/video-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/video-black.png -------------------------------------------------------------------------------- /wallet_dark/css/images/icons-png/video-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/css/images/icons-png/video-white.png -------------------------------------------------------------------------------- /wallet_dark/css/m_phpbitadmin.css: -------------------------------------------------------------------------------- 1 | html,body {height:100%;} 2 | 3 | #image_WalletImage {vertical-align:middle;margin-top:5px;height:50px;width:50px;margin-left:3px;} 4 | #span_WalletHeaderText {font-family:arial;color:#FFD249;font-size:26px;font-weight:bold;text-shadow: 1px 1px 1px #333;} 5 | .hr_wallet {width:96%;border:0;height:0;border-top:1px solid rgba(0,0,0,0.1);border-bottom:1px solid rgba(255,255,255,0.3);} 6 | .primary {color:#808080;font-weight:bold;} 7 | .secondary {color:#efefef;font-weight:bold;} 8 | .div_WalletOverview {height:20px;font-size:1em;padding-left:20px;padding-bottom:6px;"} 9 | .ui-priority-secondary {color:#FFD249;} 10 | .blackBG {background-color:#000; 11 | } 12 | .content { 13 | display: inline-block; vertical-align: middle; 14 | padding: 0; 15 | position : absolute !important; 16 | top:125px; 17 | right : 0; 18 | bottom : 58px !important; 19 | left : 0 !important; 20 | 21 | } 22 | 23 | #loginWrapperDiv{ 24 | margin: auto; 25 | position: absolute; 26 | top: 0; left: 0; bottom: 0; right: 0; 27 | height:250px;text-align:center;vertical-align:middle; 28 | } 29 | 30 | #loginDiv { 31 | 32 | width:300px; 33 | text-align:left; 34 | border:1px solid #808080; 35 | padding:10px; 36 | -moz-box-shadow: 0 4px 8px rgba(0,0,0,0.5); 37 | -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.5); 38 | box-shadow: 0 4px 8px rgba(0,0,0,0.5); 39 | background:#7f7f7f; 40 | } 41 | 42 | #scanWrapperDiv{ 43 | margin: auto; 44 | position: absolute; 45 | top: 0; left: 0; bottom: 0; right: 0; 46 | height:250px;text-align:center;vertical-align:middle; 47 | } 48 | 49 | #spanBTC {font-size:.8em;} 50 | #spanFee {font-size:.8em;} 51 | #spanTotal {font-weight:bold;font-size:.8em;} 52 | 53 | @media ( min-width: 40em ) { 54 | /* Show the table header rows and set all cells to display: table-cell */ 55 | .my-custom-breakpoint td, 56 | .my-custom-breakpoint th, 57 | .my-custom-breakpoint tbody th, 58 | .my-custom-breakpoint tbody td, 59 | .my-custom-breakpoint thead td, 60 | .my-custom-breakpoint thead th { 61 | display: table-cell; 62 | margin: 0; 63 | 64 | } 65 | /* Hide the labels in each cell */ 66 | .my-custom-breakpoint td .ui-table-cell-label, 67 | .my-custom-breakpoint th .ui-table-cell-label { 68 | display: none; 69 | } 70 | } 71 | 72 | .movie-list thead th, 73 | .movie-list tbody tr:last-child { 74 | 75 | border-bottom: 1px solid #505050; /* non-RGBA fallback */ 76 | 77 | 78 | } 79 | .movie-list tbody th, 80 | .movie-list tbody td { 81 | font-size:.8em; 82 | border-bottom: 1px solid #505050; /* non-RGBA fallback */ 83 | 84 | } 85 | .movie-list tbody tr:last-child th, 86 | .movie-list tbody tr:last-child td { 87 | 88 | 89 | } 90 | .movie-list tbody tr:nth-child(odd) td, 91 | .movie-list tbody tr:nth-child(odd) th { 92 | font-size:.8em; 93 | background-color: #eeeeee; /* non-RGBA fallback */ 94 | background-color: rgba(0,0,0,.5); 95 | 96 | } 97 | -------------------------------------------------------------------------------- /wallet_dark/getpaid.php: -------------------------------------------------------------------------------- 1 | setSession($scheme, $server_ip, $server_port, $rpc_user, $rpc_pass, $btc_addr, $p_phrase); 7 | } else { 8 | $session = true; 9 | } 10 | if( $session ) { 11 | $check_server = $wallet->ping($scheme, $server_ip, $server_port); 12 | if ( $check_server == '' || empty($check_server) ) { 13 | die (' The bitcoind server located at '. $scheme.'://'.$server_port.' on Port:['.$server_port.'] appears to be unresponsive.'); 14 | } 15 | $check_login = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'getinfo') ; 16 | if ( !is_array($check_login) ) { 17 | die (' There was an error with your Log In parameters. Is your RPC Username and Password correct?'); 18 | } 19 | } 20 | $btcRate = $wallet->bitcoinConverter(0); 21 | ?> 22 | 23 | 24 | 25 | 26 | 27 | phpBitAdmin - Bitcoin Wallet 28 | 29 | 30 | 31 | 32 | 33 | 64 | 67 | 68 | 69 |
70 |
71 |

 phpBitAdmin

72 | Scan 73 |
74 | 79 |
80 |
81 | 82 |
83 | 84 |
85 | 86 | 87 |
88 | 89 |
90 | 91 | 92 |
93 | 94 |
95 | 96 | 97 |
98 | 99 |
100 | Get Paid 101 |
102 |
103 | 104 | 105 |
106 |
107 |  BTC 108 |
109 | 110 | 111 | 112 |
113 |

Payment Request

114 |
115 |

116 |
  117 | Close 118 |          119 |      
120 |
121 |
122 | 123 |
124 | 125 |
126 |
127 | 132 |
133 |
134 | 135 |
136 | 137 | 138 | 139 | 140 | -------------------------------------------------------------------------------- /wallet_dark/home.php: -------------------------------------------------------------------------------- 1 | setSession($scheme, $server_ip, $server_port, $rpc_user, $rpc_pass, $btc_addr, $p_phrase); 7 | } else { 8 | $session = true; 9 | } 10 | if( $session ) { 11 | $check_server = $wallet->ping($scheme, $server_ip, $server_port); 12 | if ( $check_server == '' || empty($check_server) ) { 13 | die (' The bitcoind server located at '. $scheme.'://'.$server_port.' on Port:['.$server_port.'] appears to be unresponsive.'); 14 | } 15 | $check_login = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'getinfo') ; 16 | if ( !is_array($check_login) ) { 17 | die (' There was an error with your Log In parameters. Is your RPC Username and Password correct?'); 18 | } 19 | } 20 | ?> 21 | 22 | 23 | 24 | 25 | 26 | phpBitAdmin - Bitcoin Mobile Wallet 27 | 28 | 29 | 30 | 31 | 36 | 37 | 38 |
39 | 40 |
41 |

 phpBitAdmin

42 | Scan 43 |
44 | 49 |
50 |
51 | 52 |
53 |
54 | Bitcoind 55 | Bitcoin mWallet 56 |
57 |
58 | 59 |
60 | Total Balance: 61 |  BTC 62 |
63 | 64 |
65 | Fee per transaction: 66 | 67 |
68 | 69 |
70 | Wallet Version: 71 | 72 |
73 | 74 |
75 | Network: 76 | 77 |
78 | 79 |
80 | Bitcoind Protocol: 81 | 82 |
83 | 84 |
85 | Current Connections: 86 | 87 |
88 |
89 | 90 |
91 |
92 | 97 |
98 |
99 | 100 |
101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /wallet_dark/images/BitCoin_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/images/BitCoin_L.png -------------------------------------------------------------------------------- /wallet_dark/images/bitcoin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/images/bitcoin2.png -------------------------------------------------------------------------------- /wallet_dark/images/bitcoind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/images/bitcoind.png -------------------------------------------------------------------------------- /wallet_dark/images/check-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/images/check-green.png -------------------------------------------------------------------------------- /wallet_dark/images/check-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/images/check-red.png -------------------------------------------------------------------------------- /wallet_dark/images/coins-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/images/coins-icon.png -------------------------------------------------------------------------------- /wallet_dark/images/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_dark/images/qr.png -------------------------------------------------------------------------------- /wallet_dark/index.php: -------------------------------------------------------------------------------- 1 | setSession($scheme, $server_ip, $server_port, $rpc_user, $rpc_pass, $btc_addr, $p_phrase); 7 | } else { 8 | $session = true; 9 | } 10 | if( $session ) { 11 | $check_server = $wallet->ping($scheme, $server_ip, $server_port); 12 | if ( $check_server == '' || empty($check_server) ) { 13 | die (' The bitcoind server located at '. $scheme.'://'.$server_port.' on Port:['.$server_port.'] appears to be unresponsive.'); 14 | } 15 | $check_login = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'getinfo') ; 16 | if ( !is_array($check_login) ) { 17 | die (' There was an error with your Log In parameters. Is your RPC Username and Password correct?'); 18 | } 19 | } 20 | ?> 21 | 22 | 23 | 24 | 25 | 26 | phpBitAdmin - Bitcoin Wallet 27 | 28 | 29 | 30 | 31 | 36 | 39 | 40 | 41 |
42 |
43 |

 phpBitAdmin

44 | 46 |
47 | 52 |
53 |
54 | 55 |
56 | 57 | Sign In 58 |
59 |
60 | Bitcoind 61 | Bitcoind Wallet 62 |
63 |
64 |
65 | 66 | 67 |

68 |


69 | Cancel 70 | Submit 71 |
72 |
73 | 74 |
75 | 76 |
77 |
78 | 83 |
84 |
85 |
86 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /wallet_dark/js/html5-qrcode.js: -------------------------------------------------------------------------------- 1 | (function( $ ){ 2 | jQuery.fn.extend({ 3 | html5_qrcode: function(qrcodeSuccess, qrcodeError, videoError) { 4 | return this.each(function() { 5 | var currentElem = $( this ); 6 | var height = currentElem.height(); 7 | var width = currentElem.width(); 8 | if (height == null) { 9 | height = 250; 10 | } 11 | if (width == null) { 12 | width = 300; 13 | } 14 | var vidElem = $('').appendTo(currentElem); 15 | var canvasElem = $('').appendTo(currentElem); 16 | var video = vidElem[0]; 17 | var canvas = canvasElem[0]; 18 | var context = canvas.getContext('2d'); 19 | var localMediaStream; 20 | var scan = function() { 21 | if (localMediaStream) { 22 | context.drawImage(video, 0, 0, 307,250); 23 | try { 24 | qrcode.decode(); 25 | } catch(e) { 26 | qrcodeError(e); 27 | } 28 | setTimeout(scan, 500); 29 | } else { 30 | setTimeout(scan,500); 31 | } 32 | }//end snapshot function 33 | window.URL = window.URL || window.webkitURL || window.mozURL || window.msURL; 34 | navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia; 35 | var successCallback = function(stream) { 36 | video.src = (window.URL && window.URL.createObjectURL(stream)) || stream; 37 | localMediaStream = stream; 38 | video.play(); 39 | setTimeout(scan,1000); 40 | } 41 | // Call the getUserMedia method with our callback functions 42 | if (navigator.getUserMedia) { 43 | navigator.getUserMedia({video: true}, successCallback, videoError); 44 | } else { 45 | console.log('Native web camera streaming (getUserMedia) not supported in this browser.'); 46 | // Display a friendly "sorry" message to the user 47 | } 48 | qrcode.callback = qrcodeSuccess; 49 | }); // end of html5_qrcode 50 | } 51 | }); 52 | })( jQuery ); -------------------------------------------------------------------------------- /wallet_dark/js/jquery.qrcode.min.js: -------------------------------------------------------------------------------- 1 | (function(r){r.fn.qrcode=function(h){var s;function u(a){this.mode=s;this.data=a}function o(a,c){this.typeNumber=a;this.errorCorrectLevel=c;this.modules=null;this.moduleCount=0;this.dataCache=null;this.dataList=[]}function q(a,c){if(void 0==a.length)throw Error(a.length+"/"+c);for(var d=0;da||this.moduleCount<=a||0>c||this.moduleCount<=c)throw Error(a+","+c);return this.modules[a][c]},getModuleCount:function(){return this.moduleCount},make:function(){if(1>this.typeNumber){for(var a=1,a=1;40>a;a++){for(var c=p.getRSBlocks(a,this.errorCorrectLevel),d=new t,b=0,e=0;e=d;d++)if(!(-1>=a+d||this.moduleCount<=a+d))for(var b=-1;7>=b;b++)-1>=c+b||this.moduleCount<=c+b||(this.modules[a+d][c+b]= 5 | 0<=d&&6>=d&&(0==b||6==b)||0<=b&&6>=b&&(0==d||6==d)||2<=d&&4>=d&&2<=b&&4>=b?!0:!1)},getBestMaskPattern:function(){for(var a=0,c=0,d=0;8>d;d++){this.makeImpl(!0,d);var b=j.getLostPoint(this);if(0==d||a>b)a=b,c=d}return c},createMovieClip:function(a,c,d){a=a.createEmptyMovieClip(c,d);this.make();for(c=0;c=f;f++)for(var i=-2;2>=i;i++)this.modules[b+f][e+i]=-2==f||2==f||-2==i||2==i||0==f&&0==i?!0:!1}},setupTypeNumber:function(a){for(var c= 7 | j.getBCHTypeNumber(this.typeNumber),d=0;18>d;d++){var b=!a&&1==(c>>d&1);this.modules[Math.floor(d/3)][d%3+this.moduleCount-8-3]=b}for(d=0;18>d;d++)b=!a&&1==(c>>d&1),this.modules[d%3+this.moduleCount-8-3][Math.floor(d/3)]=b},setupTypeInfo:function(a,c){for(var d=j.getBCHTypeInfo(this.errorCorrectLevel<<3|c),b=0;15>b;b++){var e=!a&&1==(d>>b&1);6>b?this.modules[b][8]=e:8>b?this.modules[b+1][8]=e:this.modules[this.moduleCount-15+b][8]=e}for(b=0;15>b;b++)e=!a&&1==(d>>b&1),8>b?this.modules[8][this.moduleCount- 8 | b-1]=e:9>b?this.modules[8][15-b-1+1]=e:this.modules[8][15-b-1]=e;this.modules[this.moduleCount-8][8]=!a},mapData:function(a,c){for(var d=-1,b=this.moduleCount-1,e=7,f=0,i=this.moduleCount-1;0g;g++)if(null==this.modules[b][i-g]){var n=!1;f>>e&1));j.getMask(c,b,i-g)&&(n=!n);this.modules[b][i-g]=n;e--; -1==e&&(f++,e=7)}b+=d;if(0>b||this.moduleCount<=b){b-=d;d=-d;break}}}};o.PAD0=236;o.PAD1=17;o.createData=function(a,c,d){for(var c=p.getRSBlocks(a, 9 | c),b=new t,e=0;e8*a)throw Error("code length overflow. ("+b.getLengthInBits()+">"+8*a+")");for(b.getLengthInBits()+4<=8*a&&b.put(0,4);0!=b.getLengthInBits()%8;)b.putBit(!1);for(;!(b.getLengthInBits()>=8*a);){b.put(o.PAD0,8);if(b.getLengthInBits()>=8*a)break;b.put(o.PAD1,8)}return o.createBytes(b,c)};o.createBytes=function(a,c){for(var d= 10 | 0,b=0,e=0,f=Array(c.length),i=Array(c.length),g=0;g>>=1;return c},getPatternPosition:function(a){return j.PATTERN_POSITION_TABLE[a-1]},getMask:function(a,c,d){switch(a){case 0:return 0==(c+d)%2;case 1:return 0==c%2;case 2:return 0==d%3;case 3:return 0==(c+d)%3;case 4:return 0==(Math.floor(c/2)+Math.floor(d/3))%2;case 5:return 0==c*d%2+c*d%3;case 6:return 0==(c*d%2+c*d%3)%2;case 7:return 0==(c*d%3+(c+d)%2)%2;default:throw Error("bad maskPattern:"+ 14 | a);}},getErrorCorrectPolynomial:function(a){for(var c=new q([1],0),d=0;dc)switch(a){case 1:return 10;case 2:return 9;case s:return 8;case 8:return 8;default:throw Error("mode:"+a);}else if(27>c)switch(a){case 1:return 12;case 2:return 11;case s:return 16;case 8:return 10;default:throw Error("mode:"+a);}else if(41>c)switch(a){case 1:return 14;case 2:return 13;case s:return 16;case 8:return 12;default:throw Error("mode:"+ 15 | a);}else throw Error("type:"+c);},getLostPoint:function(a){for(var c=a.getModuleCount(),d=0,b=0;b=g;g++)if(!(0>b+g||c<=b+g))for(var h=-1;1>=h;h++)0>e+h||c<=e+h||0==g&&0==h||i==a.isDark(b+g,e+h)&&f++;5a)throw Error("glog("+a+")");return l.LOG_TABLE[a]},gexp:function(a){for(;0>a;)a+=255;for(;256<=a;)a-=255;return l.EXP_TABLE[a]},EXP_TABLE:Array(256), 17 | LOG_TABLE:Array(256)},m=0;8>m;m++)l.EXP_TABLE[m]=1<m;m++)l.EXP_TABLE[m]=l.EXP_TABLE[m-4]^l.EXP_TABLE[m-5]^l.EXP_TABLE[m-6]^l.EXP_TABLE[m-8];for(m=0;255>m;m++)l.LOG_TABLE[l.EXP_TABLE[m]]=m;q.prototype={get:function(a){return this.num[a]},getLength:function(){return this.num.length},multiply:function(a){for(var c=Array(this.getLength()+a.getLength()-1),d=0;d 18 | this.getLength()-a.getLength())return this;for(var c=l.glog(this.get(0))-l.glog(a.get(0)),d=Array(this.getLength()),b=0;b>>7-a%8&1)},put:function(a,c){for(var d=0;d>>c-d-1&1))},getLengthInBits:function(){return this.length},putBit:function(a){var c=Math.floor(this.length/8);this.buffer.length<=c&&this.buffer.push(0);a&&(this.buffer[c]|=128>>>this.length%8);this.length++}};"string"===typeof h&&(h={text:h});h=r.extend({},{render:"canvas",width:256,height:256,typeNumber:-1, 26 | correctLevel:2,background:"#ffffff",foreground:"#000000"},h);return this.each(function(){var a;if("canvas"==h.render){a=new o(h.typeNumber,h.correctLevel);a.addData(h.text);a.make();var c=document.createElement("canvas");c.width=h.width;c.height=h.height;for(var d=c.getContext("2d"),b=h.width/a.getModuleCount(),e=h.height/a.getModuleCount(),f=0;f").css("width",h.width+"px").css("height",h.height+"px").css("border","0px").css("border-collapse","collapse").css("background-color",h.background);d=h.width/a.getModuleCount();b=h.height/a.getModuleCount();for(e=0;e").css("height",b+"px").appendTo(c);for(i=0;i").css("width", 28 | d+"px").css("background-color",a.isDark(e,i)?h.foreground:h.background).appendTo(f)}}a=c;jQuery(a).appendTo(this)})}})(jQuery); -------------------------------------------------------------------------------- /wallet_dark/js/qrcode.php: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | phpBitAdmin - Bitcoin Mobile Wallet 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 22 | -------------------------------------------------------------------------------- /wallet_dark/pay.php: -------------------------------------------------------------------------------- 1 | setSession($scheme, $server_ip, $server_port, $rpc_user, $rpc_pass, $btc_addr, $p_phrase); 7 | } else { 8 | $session = true; 9 | } 10 | if( $session ) { 11 | $check_server = $wallet->ping($scheme, $server_ip, $server_port); 12 | if ( $check_server == '' || empty($check_server) ) { 13 | die (' The bitcoind server located at '. $scheme.'://'.$server_port.' on Port:['.$server_port.'] appears to be unresponsive.'); 14 | } 15 | $check_login = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'getinfo') ; 16 | if ( !is_array($check_login) ) { 17 | die (' There was an error with your Log In parameters. Is your RPC Username and Password correct?'); 18 | } 19 | } 20 | 21 | $btcRate = $wallet->bitcoinConverter(0); 22 | 23 | $url = urldecode($_SERVER['REQUEST_URI']); 24 | $qs = parse_url($url); 25 | $query = $qs['query']; 26 | $query = urldecode($query); 27 | 28 | if( isset($query) ) { 29 | 30 | $add_len = strlen($_REQUEST['address']); 31 | $address = $_REQUEST['address']; 32 | $amount = $_REQUEST['amount']; 33 | $message = urlencode($_REQUEST['message']); 34 | } 35 | ?> 36 | 37 | 38 | 39 | 40 | 41 | phpBitAdmin - Bitcoin Mobile Wallet 42 | 43 | 44 | 45 | 46 | 171 | 175 | 176 | 177 |
178 | 179 |
180 |

 phpBitAdmin

181 | Scan 182 |
183 | 188 |
189 |
190 | 191 |
192 | 193 |
194 | 195 | 196 |
197 | 198 |
199 | 200 | 201 |
202 | 203 |
204 | 205 | 206 |
207 | 208 |
209 | 210 |
211 | 212 |
213 |
214 |
215 |
216 |
217 | 218 |
219 |  -BTC
220 |  -Fee
221 |   TOTAL 222 |
223 | 224 |
225 |
226 |

Payment Sent!

227 |
228 |
229 |
230 |
  231 | Close 232 |
233 |
234 | 235 |
236 | 237 |
238 |
239 | 244 |
245 |
246 | 247 |
248 | 249 | 250 | 251 | -------------------------------------------------------------------------------- /wallet_dark/php/phpSend.php: -------------------------------------------------------------------------------- 1 | rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'validateaddress',$address); 15 | if(!$valid_address){ 16 | die($address . ' = Invalid Bitcoin Address'); 17 | } else { 18 | $status = 'valid'; 19 | } 20 | 21 | // check if wallet is encrypted or not. 22 | $check_login = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'getinfo') ; 23 | if ( !is_array($check_login) ) { 24 | die (' There was an error with your Log In parameters. Is your RPC Username and Password correct?'); 25 | } else { 26 | if (array_key_exists('unlocked_until',$check_login)) { 27 | $encrypted = 'True'; 28 | } else { 29 | $encrypted = 'False'; 30 | } 31 | } 32 | 33 | // we need to unlock an encrypted wallet to send bitcoins. 34 | if($encrypted === 'True'){ 35 | $pp_params = '"'.$passphrase.'",10'; 36 | $wp = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'walletpassphrase',$pp_params); // unlock wallet 37 | if ($wp===true) { 38 | $status = 'valid'; 39 | } else { 40 | die($passphrase . ' = Invalid Passphrase'); 41 | } 42 | } 43 | 44 | // okay, send bitcoins. 45 | if( $status == 'valid') { 46 | if( $message=='') { 47 | $send_params = $address . ', ' . $amount; 48 | } else { 49 | $send_params = $address . ', ' . $amount . ', ' . $message; 50 | } 51 | $query = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'sendtoaddress',$send_params); 52 | print 'SENT TO: '.$address.'
AMOUNT: '.$amount.'
MESSAGE: '.$message; 53 | } 54 | ob_flush(); 55 | ?> -------------------------------------------------------------------------------- /wallet_dark/php/phpbitadmin.class.php: -------------------------------------------------------------------------------- 1 | $va) { 9 | $sorter[$ii]=$va[$key]; 10 | } 11 | natcasesort($sorter); 12 | foreach ($sorter as $ii => $va) { 13 | $ret[$ii]=$array[$ii]; 14 | } 15 | return $ret; 16 | } 17 | 18 | public function bitcoinConverter($currancy) { 19 | $url = "https://bitpay.com/api/rates"; 20 | $json = file_get_contents($url); 21 | $data = json_decode($json, TRUE); 22 | $rate = $data[$currancy]["rate"]; 23 | $usd_price = 1; 24 | $current_price = round( $usd_price / $rate , 6 ); 25 | return $rate; 26 | } 27 | 28 | public function ping($scheme,$ip,$port){ 29 | 30 | $url = $scheme.'://'.$ip; 31 | $ch = curl_init(); 32 | curl_setopt($ch, CURLOPT_URL,$url); 33 | curl_setopt ($ch, CURLOPT_PORT , $port); 34 | curl_setopt ($ch, CURLOPT_TIMEOUT , 1); 35 | curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); 36 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 37 | $result = curl_exec($ch); 38 | curl_close($ch); 39 | return $result; 40 | } 41 | 42 | public function rpc($scheme,$ip,$port,$rpcuser,$rpcpass,$command,$params=null){ 43 | 44 | $url = $scheme.'://'.$ip.':'.$port.'/'; 45 | $request = '{"jsonrpc": "1.0", "id":"phpBitAdmin", "method": "'.$command.'", "params": ['.$params.'] }'; 46 | 47 | $ch = curl_init($url); 48 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 49 | curl_setopt($ch, CURLOPT_BINARYTRANSFER,true); 50 | curl_setopt($ch, CURLOPT_USERPWD, "$rpcuser:$rpcpass"); 51 | curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type: text/plain')); 52 | curl_setopt($ch, CURLOPT_POST, true); 53 | curl_setopt($ch, CURLOPT_POSTFIELDS, $request); 54 | $response = curl_exec($ch); 55 | $response = json_decode($response,true); 56 | $result = $response['result']; 57 | $error = $response['error']; 58 | curl_close($ch); 59 | 60 | switch($command){ 61 | 62 | case "validateaddress": 63 | return ($result['isvalid']); 64 | break; 65 | case "walletpassphrase": 66 | if( empty($result) && empty($error) ) { 67 | return true; 68 | } else { 69 | return ''.nl2br(htmlentities($response['error']['message'])).''; 70 | } 71 | break; 72 | default: 73 | if (!is_null($error) ) { 74 | return $response['error']['message']; 75 | } else { 76 | return $result; 77 | } 78 | } 79 | 80 | } // /rpc 81 | 82 | public function setSession($scheme,$ip,$port,$user,$pass,$btc_addr,$p_phrase){ 83 | $_SESSION['PHPBITADMIN']['BITCOIND_SCHEME'] = $scheme; 84 | $_SESSION['PHPBITADMIN']['BITCOIND_IP'] = $ip; 85 | $_SESSION['PHPBITADMIN']['BITCOIND_PORT'] = $port; 86 | $_SESSION['PHPBITADMIN']['BITCOIND_RPC_USER'] = $user; 87 | $_SESSION['PHPBITADMIN']['BITCOIND_RPC_PASS'] = $pass; 88 | $_SESSION['PHPBITADMIN']['BITCOIND_BTC_ADDRESS']= $btc_addr; 89 | $_SESSION['PHPBITADMIN']['BITCOIND_PASSPHRASE'] = $p_phrase; 90 | $_SESSION['PHPBITADMIN']['LOGIN'] = true; 91 | $_SESSION['PHPBITADMIN']['LOGIN_TIME'] = time(); 92 | $_SESSION['PHPBITADMIN']['EXPIRE_TIME'] = $_SESSION['PHPBITADMIN']['LOGIN_TIME'] + (20 * 60); // set expiration for 20 minutes. 93 | return true; 94 | } 95 | } -------------------------------------------------------------------------------- /wallet_dark/scan.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | phpBitAdmin - Bitcoin Mobile Wallet 7 | 8 | 9 | 10 | 11 | 12 | 51 | 52 | 53 |
54 | 55 |
56 |

 phpBitAdmin

57 | Scan 58 |
59 | 64 |
65 |
66 | 67 |
68 |
69 |

70 | WebRTC requires you to "Allow" camera access. 71 | 72 | 73 |
74 |
75 | 76 |
77 |
78 | 83 |
84 |
85 | 86 |
87 | 88 | 89 | 90 | -------------------------------------------------------------------------------- /wallet_dark/settings.php: -------------------------------------------------------------------------------- 1 | setSession($scheme, $server_ip, $server_port, $rpc_user, $rpc_pass, $btc_addr, $p_phrase); 7 | } else { 8 | $session = true; 9 | } 10 | if( $session ) { 11 | $check_server = $wallet->ping($scheme, $server_ip, $server_port); 12 | if ( $check_server == '' || empty($check_server) ) { 13 | die (' The bitcoind server located at '. $scheme.'://'.$server_port.' on Port:['.$server_port.'] appears to be unresponsive.'); 14 | } 15 | $check_login = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'getinfo') ; 16 | if ( !is_array($check_login) ) { 17 | die (' There was an error with your Log In parameters. Is your RPC Username and Password correct?'); 18 | } 19 | } 20 | ?> 21 | 22 | 23 | 24 | 25 | 26 | phpBitAdmin - Bitcoin Mobile Wallet 27 | 28 | 29 | 30 | 31 | 36 | 37 | 38 |
39 |
40 |

 phpBitAdmin

41 | Scan 42 |
43 | 48 |
49 |
50 | 51 |
52 |
53 | 54 | 55 |
56 | 57 |
58 | 59 | 60 |
61 | 62 |
63 | 64 | 65 |
66 | 67 |
68 | 69 | 70 |
71 |
72 | 73 |
74 | 75 |
76 | 77 |
78 |
79 | 84 |
85 |
86 | 87 |
88 | 89 | 90 | 91 | -------------------------------------------------------------------------------- /wallet_dark/transactions.php: -------------------------------------------------------------------------------- 1 | setSession($scheme, $server_ip, $server_port, $rpc_user, $rpc_pass, $btc_addr, $p_phrase); 7 | } else { 8 | $session = true; 9 | } 10 | if( $session ) { 11 | $check_server = $wallet->ping($scheme, $server_ip, $server_port); 12 | if ( $check_server == '' || empty($check_server) ) { 13 | die (' The bitcoind server located at '. $scheme.'://'.$server_port.' on Port:['.$server_port.'] appears to be unresponsive.'); 14 | } 15 | $check_login = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'getinfo') ; 16 | if ( !is_array($check_login) ) { 17 | die (' There was an error with your Log In parameters. Is your RPC Username and Password correct?'); 18 | } 19 | } 20 | 21 | $params = '"",100,0'; 22 | $query = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'listsinceblock'); 23 | $trans = $query["transactions"]; 24 | $trans_sorted = $wallet->aasort($trans,"time"); 25 | $transactions = array_reverse($trans_sorted); ?> 26 | 27 | 28 | 29 | 30 | 31 | phpBitAdmin - Bitcoin Wallet 32 | 33 | 34 | 35 | 36 | 41 | 42 | 43 |
44 |
45 |

 phpBitAdmin

46 | Scan 47 |
48 | 53 |
54 |
55 | 56 |
57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | $val) { 73 | switch ($key) { 74 | case "account": 75 | $account = $val; 76 | break; 77 | case "address": 78 | $address = $val; 79 | break; 80 | case "amount": 81 | if ((int)$val < 0) {$negative = true;} 82 | $amount = number_format($val, 4, '.', ' ') ; 83 | break; 84 | case "category": 85 | $category = $val; 86 | break; 87 | case "comment": 88 | $comment = $val; 89 | break; 90 | case "confirmations": 91 | $confirmations = $val; 92 | break; 93 | case "time": 94 | $time = date('m-d-y H:i', $val); 95 | break; 96 | case "fee": 97 | $fee = $val; 98 | } 99 | } 100 | 101 | if ($category == 'send') { 102 | $amount = $amount + $fee; 103 | $category = 'Sent'; 104 | } 105 | if ($category == 'receive') {$category = 'Received';} 106 | if ($amount < 0) {$negative = true;}else{$negative=false;} 107 | if ($confirmations >= 6) { 108 | $conf_img = 'images/check-green.png'; 109 | } else { 110 | $conf_img = 'images/check-red.png'; 111 | } 112 | print ''; 113 | print ''; 114 | print ''; 115 | print ''; 116 | print ''; 117 | if($negative){ 118 | print ''; 119 | } else { 120 | print ''; 121 | } 122 | print ''; 123 | 124 | $i++; 125 | $account = $address = $amount = $category = $comment = $confirmations = $fee = $negative = $time = ''; 126 | } 127 | ?> 128 | 129 |
DateConfirmedTypeAddressAmount
'.$time.' ['.$confirmations.']'.$category.''.$address.''.$amount.''.$amount.'
130 | 131 | 132 |
133 | 134 |
135 |
136 | 141 |
142 | 143 |
144 | 145 |
146 | 147 | 148 | 149 | -------------------------------------------------------------------------------- /wallet_light/License.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Mark J. Patterson [www.phpbitadmin.net] 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | 23 | Donations: 17nqTBmCX451UkNSouHANqywkgarsT4MtQ -------------------------------------------------------------------------------- /wallet_light/README.txt: -------------------------------------------------------------------------------- 1 | Welcome to phpBitAdmin - Bitcoind HTML5 Wallet 2 | 3 | This web application will run on any PHP enabled webserver. Only cURL 4 | must be enabled in PHP. Otherwise, it's good to go. 5 | 6 | Drop this web app anywhere in your webserver's directory. Open config.inc.php 7 | and enter the required parameters needed to access any particular bitcoind 8 | instance. 9 | 10 | On the target Bitcoin Server add a 'rpcallowip" directive to bitcoin.conf 11 | that points to the network ip address of the webserver running 12 | phpBitAdmin - Bitcoin Wallet. 13 | 14 | #[ex.] 15 | rpcallowip=10.0.0.15 16 | 17 | Where 10.0.0.15 is the address of the webserver. You may enter as many 18 | rpcallowip directives as necessary. Other important bitcoin.conf 19 | directives are as follows. Uncomment as desired. 20 | 21 | # server=1 tells Bitcoin to accept JSON-RPC commands. 22 | server=1 23 | 24 | # Listen for RPC connection on this TCP port: 25 | # Standard port: 26 | #rpcport=1832 27 | # Testnet port: 28 | #rpcport=18332 29 | 30 | # Run on the test network instead of the real bitcoin network. 31 | #testnet=3 32 | 33 | That's about all that is required in bitcoin.conf. You may want to check 34 | your firewall and open port 8332 || 18332 depending on which network your 35 | running the application against. 36 | 37 | Page 'pay.php' runs a qr code scanner directly inside a web page. It makes use 38 | of getUserMedia (WebRTC) so use of the latest browser is recommended. Safari 39 | an IE do not yet support it but it is coming soon on those browsers. This page 40 | also requires a web cam or native camera to function. 41 | 42 | NOTE: This web app contains downloaded versions of jQuery & jQuery Mobile. I made 43 | a conscience decision not to link to various repositories containing the libraries 44 | because issues are created when one accesses non-ssl from an ssl page. This app 45 | is not yet production-ready, but when it is this will be one less issue to resolve. 46 | -------------------------------------------------------------------------------- /wallet_light/config.inc.php: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /wallet_light/css/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/ajax-loader.gif -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/action-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/action-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/action-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/action-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/alert-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/alert-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/alert-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/alert-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/arrow-d-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/arrow-d-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/arrow-d-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/arrow-d-l-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/arrow-d-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/arrow-d-l-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/arrow-d-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/arrow-d-r-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/arrow-d-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/arrow-d-r-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/arrow-d-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/arrow-d-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/arrow-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/arrow-l-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/arrow-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/arrow-l-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/arrow-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/arrow-r-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/arrow-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/arrow-r-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/arrow-u-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/arrow-u-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/arrow-u-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/arrow-u-l-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/arrow-u-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/arrow-u-l-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/arrow-u-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/arrow-u-r-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/arrow-u-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/arrow-u-r-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/arrow-u-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/arrow-u-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/audio-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/audio-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/audio-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/audio-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/back-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/back-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/back-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/back-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/bars-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/bars-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/bars-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/bars-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/bullets-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/bullets-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/bullets-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/bullets-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/calendar-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/calendar-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/calendar-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/calendar-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/camera-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/camera-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/camera-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/camera-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/carat-d-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/carat-d-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/carat-d-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/carat-d-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/carat-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/carat-l-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/carat-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/carat-l-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/carat-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/carat-r-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/carat-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/carat-r-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/carat-u-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/carat-u-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/carat-u-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/carat-u-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/check-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/check-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/check-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/check-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/clock-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/clock-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/clock-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/clock-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/cloud-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/cloud-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/cloud-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/cloud-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/comment-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/comment-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/comment-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/comment-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/delete-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/delete-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/delete-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/delete-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/edit-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/edit-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/edit-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/edit-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/eye-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/eye-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/eye-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/eye-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/forbidden-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/forbidden-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/forbidden-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/forbidden-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/forward-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/forward-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/forward-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/forward-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/gear-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/gear-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/gear-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/gear-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/grid-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/grid-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/grid-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/grid-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/heart-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/heart-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/heart-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/heart-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/home-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/home-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/home-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/home-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/info-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/info-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/info-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/info-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/location-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/location-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/location-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/location-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/lock-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/lock-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/lock-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/lock-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/mail-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/mail-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/mail-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/mail-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/minus-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/minus-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/minus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/minus-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/navigation-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/navigation-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/navigation-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/navigation-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/phone-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/phone-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/phone-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/phone-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/plus-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/plus-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/plus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/plus-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/power-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/power-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/power-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/power-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/recycle-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/recycle-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/recycle-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/recycle-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/refresh-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/refresh-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/refresh-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/refresh-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/search-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/search-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/search-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/search-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/shop-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/shop-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/shop-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/shop-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/star-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/star-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/star-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/star-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/tag-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/tag-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/tag-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/tag-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/user-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/user-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/user-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/user-white.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/video-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/video-black.png -------------------------------------------------------------------------------- /wallet_light/css/images/icons-png/video-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/css/images/icons-png/video-white.png -------------------------------------------------------------------------------- /wallet_light/css/m_phpbitadmin.css: -------------------------------------------------------------------------------- 1 | html,body {height:100%;} 2 | 3 | #image_WalletImage {vertical-align:middle;margin-top:5px;height:50px;width:50px;margin-left:3px;} 4 | #span_WalletHeaderText {font-family:arial;color:#FFD249;font-size:26px;font-weight:bold;text-shadow: 1px 1px 1px #333;} 5 | .hr_wallet {width:96%;border:0;height:0;border-top:1px solid rgba(0,0,0,0.1);border-bottom:1px solid rgba(255,255,255,0.3);} 6 | .primary {color:#808080;font-weight:bold;} 7 | .secondary {color:#efefef;font-weight:bold;} 8 | .secondary_light {color:#000;font-weight:bold;} 9 | .div_WalletOverview {height:20px;font-size:1em;padding-left:20px;padding-bottom:6px;"} 10 | .ui-priority-secondary {color:#FFD249;} 11 | .blackBG {background-color:#000; 12 | } 13 | .content { 14 | display: inline-block; vertical-align: middle; 15 | padding: 0; 16 | position : absolute !important; 17 | top:125px; 18 | right : 0; 19 | bottom : 58px !important; 20 | left : 0 !important; 21 | 22 | } 23 | 24 | #loginWrapperDiv{ 25 | margin: auto; 26 | position: absolute; 27 | top: 0; left: 0; bottom: 0; right: 0; 28 | height:250px;text-align:center;vertical-align:middle; 29 | } 30 | 31 | #loginDiv { 32 | 33 | width:300px; 34 | text-align:left; 35 | border:1px solid #808080; 36 | padding:10px; 37 | -moz-box-shadow: 0 4px 8px rgba(0,0,0,0.5); 38 | -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.5); 39 | box-shadow: 0 4px 8px rgba(0,0,0,0.5); 40 | background:#7f7f7f; 41 | } 42 | 43 | #scanWrapperDiv{ 44 | margin: auto; 45 | position: absolute; 46 | top: 0; left: 0; bottom: 0; right: 0; 47 | height:250px;text-align:center;vertical-align:middle; 48 | } 49 | 50 | #spanBTC {font-size:.8em;} 51 | #spanFee {font-size:.8em;} 52 | #spanTotal {font-weight:bold;font-size:.8em;} 53 | 54 | @media ( min-width: 40em ) { 55 | /* Show the table header rows and set all cells to display: table-cell */ 56 | .my-custom-breakpoint td, 57 | .my-custom-breakpoint th, 58 | .my-custom-breakpoint tbody th, 59 | .my-custom-breakpoint tbody td, 60 | .my-custom-breakpoint thead td, 61 | .my-custom-breakpoint thead th { 62 | display: table-cell; 63 | margin: 0; 64 | 65 | } 66 | /* Hide the labels in each cell */ 67 | .my-custom-breakpoint td .ui-table-cell-label, 68 | .my-custom-breakpoint th .ui-table-cell-label { 69 | display: none; 70 | } 71 | } 72 | 73 | .movie-list thead th, 74 | .movie-list tbody tr:last-child { 75 | 76 | border-bottom: 1px solid #505050; /* non-RGBA fallback */ 77 | 78 | 79 | } 80 | .movie-list tbody th, 81 | .movie-list tbody td { 82 | font-size:.8em; 83 | border-bottom: 1px solid #505050; /* non-RGBA fallback */ 84 | 85 | } 86 | .movie-list tbody tr:last-child th, 87 | .movie-list tbody tr:last-child td { 88 | 89 | 90 | } 91 | .movie-list tbody tr:nth-child(odd) td, 92 | .movie-list tbody tr:nth-child(odd) th { 93 | font-size:.8em; 94 | background-color: #eeeeee; /* non-RGBA fallback */ 95 | background-color: rgba(0,0,0,.5); 96 | 97 | } 98 | -------------------------------------------------------------------------------- /wallet_light/css/m_phpbitadmin_light.css: -------------------------------------------------------------------------------- 1 | html,body {height:100%;} 2 | 3 | #image_WalletImage {vertical-align:middle;margin-top:5px;height:50px;width:50px;margin-left:3px;} 4 | #span_WalletHeaderText {font-family:arial;color:#FFD249;font-size:26px;font-weight:bold;text-shadow: 1px 1px 1px #333;} 5 | .hr_wallet {width:96%;border:0;height:0;border-top:1px solid rgba(0,0,0,0.1);border-bottom:1px solid rgba(255,255,255,0.3);} 6 | .primary {color:#808080;font-weight:bold;} 7 | .secondary {color:#333;font-weight:bold;} 8 | .div_WalletOverview {height:20px;font-size:1em;padding-left:20px;padding-bottom:6px;"} 9 | .ui-priority-secondary {color:#FFD249;} 10 | .blackBG {background-color:#000; 11 | } 12 | .content { 13 | display: inline-block; vertical-align: middle; 14 | padding: 0; 15 | position : absolute !important; 16 | top:125px; 17 | right : 0; 18 | bottom : 58px !important; 19 | left : 0 !important; 20 | 21 | } 22 | 23 | #loginWrapperDiv{ 24 | margin: auto; 25 | position: absolute; 26 | top: 0; left: 0; bottom: 0; right: 0; 27 | height:250px;text-align:center;vertical-align:middle; 28 | } 29 | 30 | #loginDiv { 31 | 32 | width:300px; 33 | text-align:left; 34 | border:1px solid #808080; 35 | padding:10px; 36 | -moz-box-shadow: 0 4px 8px rgba(0,0,0,0.5); 37 | -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.5); 38 | box-shadow: 0 4px 8px rgba(0,0,0,0.5); 39 | background:#7f7f7f; 40 | } 41 | 42 | #scanWrapperDiv{ 43 | margin: auto; 44 | position: absolute; 45 | top: 0; left: 0; bottom: 0; right: 0; 46 | height:250px;text-align:center;vertical-align:middle; 47 | } 48 | 49 | #spanBTC {font-size:.8em;} 50 | #spanFee {font-size:.8em;} 51 | #spanTotal {font-weight:bold;font-size:.8em;} 52 | 53 | @media ( min-width: 40em ) { 54 | /* Show the table header rows and set all cells to display: table-cell */ 55 | .my-custom-breakpoint td, 56 | .my-custom-breakpoint th, 57 | .my-custom-breakpoint tbody th, 58 | .my-custom-breakpoint tbody td, 59 | .my-custom-breakpoint thead td, 60 | .my-custom-breakpoint thead th { 61 | display: table-cell; 62 | margin: 0; 63 | 64 | } 65 | /* Hide the labels in each cell */ 66 | .my-custom-breakpoint td .ui-table-cell-label, 67 | .my-custom-breakpoint th .ui-table-cell-label { 68 | display: none; 69 | } 70 | } 71 | 72 | .movie-list thead th, 73 | .movie-list tbody tr:last-child { 74 | 75 | border-bottom: 1px solid #505050; /* non-RGBA fallback */ 76 | 77 | 78 | } 79 | .movie-list tbody th, 80 | .movie-list tbody td { 81 | font-size:.8em; 82 | border-bottom: 1px solid #505050; /* non-RGBA fallback */ 83 | 84 | } 85 | .movie-list tbody tr:last-child th, 86 | .movie-list tbody tr:last-child td { 87 | 88 | 89 | } 90 | .movie-list tbody tr:nth-child(odd) td, 91 | .movie-list tbody tr:nth-child(odd) th { 92 | font-size:.8em; 93 | background-color: #eeeeee; /* non-RGBA fallback */ 94 | background-color: rgba(0,0,0,.1); 95 | 96 | } 97 | -------------------------------------------------------------------------------- /wallet_light/getpaid.php: -------------------------------------------------------------------------------- 1 | setSession($scheme, $server_ip, $server_port, $rpc_user, $rpc_pass, $btc_addr, $p_phrase); 7 | } else { 8 | $session = true; 9 | } 10 | if( $session ) { 11 | $check_server = $wallet->ping($scheme, $server_ip, $server_port); 12 | if ( $check_server == '' || empty($check_server) ) { 13 | die (' The bitcoind server located at '. $scheme.'://'.$server_port.' on Port:['.$server_port.'] appears to be unresponsive.'); 14 | } 15 | $check_login = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'getinfo') ; 16 | if ( !is_array($check_login) ) { 17 | die (' There was an error with your Log In parameters. Is your RPC Username and Password correct?'); 18 | } 19 | } 20 | $btcRate = $wallet->bitcoinConverter(0); 21 | ?> 22 | 23 | 24 | 25 | 26 | 27 | phpBitAdmin - Bitcoin Wallet 28 | 29 | 30 | 31 | 32 | 33 | 64 | 67 | 68 | 69 |
70 |
71 |

 phpBitAdmin

72 | Scan 73 |
74 | 79 |
80 |
81 | 82 |
83 | 84 |
85 | 86 | 87 |
88 | 89 |
90 | 91 | 92 |
93 | 94 |
95 | 96 | 97 |
98 | 99 |
100 | Get Paid 101 |
102 |
103 | 104 | 105 |
106 |
107 |  BTC 108 |
109 | 110 | 111 | 112 |
113 |

Payment Request

114 |
115 |

116 |
  117 | Close 118 |          119 |      
120 |
121 |
122 | 123 |
124 | 125 |
126 |
127 | 132 |
133 |
134 | 135 |
136 | 137 | 138 | 139 | 140 | -------------------------------------------------------------------------------- /wallet_light/home.php: -------------------------------------------------------------------------------- 1 | setSession($scheme, $server_ip, $server_port, $rpc_user, $rpc_pass, $btc_addr, $p_phrase); 7 | } else { 8 | $session = true; 9 | } 10 | if( $session ) { 11 | $check_server = $wallet->ping($scheme, $server_ip, $server_port); 12 | if ( $check_server == '' || empty($check_server) ) { 13 | die (' The bitcoind server located at '. $scheme.'://'.$server_port.' on Port:['.$server_port.'] appears to be unresponsive.'); 14 | } 15 | $check_login = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'getinfo') ; 16 | if ( !is_array($check_login) ) { 17 | die (' There was an error with your Log In parameters. Is your RPC Username and Password correct?'); 18 | } 19 | } 20 | ?> 21 | 22 | 23 | 24 | 25 | 26 | phpBitAdmin - Bitcoin Mobile Wallet 27 | 28 | 29 | 30 | 31 | 36 | 37 | 38 |
39 | 40 |
41 |

 phpBitAdmin

42 | Scan 43 |
44 | 49 |
50 |
51 | 52 |
53 |
54 | Bitcoind 55 | Bitcoin mWallet 56 |
57 |
58 | 59 |
60 | Total Balance: 61 |  BTC 62 |
63 | 64 |
65 | Fee per transaction: 66 | 67 |
68 | 69 |
70 | Wallet Version: 71 | 72 |
73 | 74 |
75 | Network: 76 | 77 |
78 | 79 |
80 | Bitcoind Protocol: 81 | 82 |
83 | 84 |
85 | Current Connections: 86 | 87 |
88 |
89 | 90 |
91 |
92 | 97 |
98 |
99 | 100 |
101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /wallet_light/images/BitCoin_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/images/BitCoin_L.png -------------------------------------------------------------------------------- /wallet_light/images/bitcoin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/images/bitcoin2.png -------------------------------------------------------------------------------- /wallet_light/images/bitcoind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/images/bitcoind.png -------------------------------------------------------------------------------- /wallet_light/images/check-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/images/check-green.png -------------------------------------------------------------------------------- /wallet_light/images/check-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/images/check-red.png -------------------------------------------------------------------------------- /wallet_light/images/coins-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/images/coins-icon.png -------------------------------------------------------------------------------- /wallet_light/images/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpatterson99/phpBitAdmin-Bitcoin-HTML5-Wallet/3824a8f4b077a9afabdf9e796993a54b464b929f/wallet_light/images/qr.png -------------------------------------------------------------------------------- /wallet_light/index.php: -------------------------------------------------------------------------------- 1 | setSession($scheme, $server_ip, $server_port, $rpc_user, $rpc_pass, $btc_addr, $p_phrase); 7 | } else { 8 | $session = true; 9 | } 10 | if( $session ) { 11 | $check_server = $wallet->ping($scheme, $server_ip, $server_port); 12 | if ( $check_server == '' || empty($check_server) ) { 13 | die (' The bitcoind server located at '. $scheme.'://'.$server_port.' on Port:['.$server_port.'] appears to be unresponsive.'); 14 | } 15 | $check_login = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'getinfo') ; 16 | if ( !is_array($check_login) ) { 17 | die (' There was an error with your Log In parameters. Is your RPC Username and Password correct?'); 18 | } 19 | } 20 | ?> 21 | 22 | 23 | 24 | 25 | 26 | phpBitAdmin - Bitcoin Wallet 27 | 28 | 29 | 30 | 31 | 36 | 39 | 40 | 41 |
42 |
43 |

 phpBitAdmin

44 | 46 |
47 | 52 |
53 |
54 | 55 |
56 | 57 | Sign In 58 |
59 |
60 | Bitcoind 61 | Bitcoind Wallet 62 |
63 |
64 |
65 | 66 | 67 |

68 |


69 | Cancel 70 | Submit 71 |
72 |
73 | 74 |
75 | 76 |
77 |
78 | 83 |
84 |
85 |
86 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /wallet_light/js/html5-qrcode.js: -------------------------------------------------------------------------------- 1 | (function( $ ){ 2 | jQuery.fn.extend({ 3 | html5_qrcode: function(qrcodeSuccess, qrcodeError, videoError) { 4 | return this.each(function() { 5 | var currentElem = $( this ); 6 | var height = currentElem.height(); 7 | var width = currentElem.width(); 8 | if (height == null) { 9 | height = 250; 10 | } 11 | if (width == null) { 12 | width = 300; 13 | } 14 | var vidElem = $('').appendTo(currentElem); 15 | var canvasElem = $('').appendTo(currentElem); 16 | var video = vidElem[0]; 17 | var canvas = canvasElem[0]; 18 | var context = canvas.getContext('2d'); 19 | var localMediaStream; 20 | var scan = function() { 21 | if (localMediaStream) { 22 | context.drawImage(video, 0, 0, 307,250); 23 | try { 24 | qrcode.decode(); 25 | } catch(e) { 26 | qrcodeError(e); 27 | } 28 | setTimeout(scan, 500); 29 | } else { 30 | setTimeout(scan,500); 31 | } 32 | }//end snapshot function 33 | window.URL = window.URL || window.webkitURL || window.mozURL || window.msURL; 34 | navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia; 35 | var successCallback = function(stream) { 36 | video.src = (window.URL && window.URL.createObjectURL(stream)) || stream; 37 | localMediaStream = stream; 38 | video.play(); 39 | setTimeout(scan,1000); 40 | } 41 | // Call the getUserMedia method with our callback functions 42 | if (navigator.getUserMedia) { 43 | navigator.getUserMedia({video: true}, successCallback, videoError); 44 | } else { 45 | console.log('Native web camera streaming (getUserMedia) not supported in this browser.'); 46 | // Display a friendly "sorry" message to the user 47 | } 48 | qrcode.callback = qrcodeSuccess; 49 | }); // end of html5_qrcode 50 | } 51 | }); 52 | })( jQuery ); -------------------------------------------------------------------------------- /wallet_light/js/jquery.qrcode.min.js: -------------------------------------------------------------------------------- 1 | (function(r){r.fn.qrcode=function(h){var s;function u(a){this.mode=s;this.data=a}function o(a,c){this.typeNumber=a;this.errorCorrectLevel=c;this.modules=null;this.moduleCount=0;this.dataCache=null;this.dataList=[]}function q(a,c){if(void 0==a.length)throw Error(a.length+"/"+c);for(var d=0;da||this.moduleCount<=a||0>c||this.moduleCount<=c)throw Error(a+","+c);return this.modules[a][c]},getModuleCount:function(){return this.moduleCount},make:function(){if(1>this.typeNumber){for(var a=1,a=1;40>a;a++){for(var c=p.getRSBlocks(a,this.errorCorrectLevel),d=new t,b=0,e=0;e=d;d++)if(!(-1>=a+d||this.moduleCount<=a+d))for(var b=-1;7>=b;b++)-1>=c+b||this.moduleCount<=c+b||(this.modules[a+d][c+b]= 5 | 0<=d&&6>=d&&(0==b||6==b)||0<=b&&6>=b&&(0==d||6==d)||2<=d&&4>=d&&2<=b&&4>=b?!0:!1)},getBestMaskPattern:function(){for(var a=0,c=0,d=0;8>d;d++){this.makeImpl(!0,d);var b=j.getLostPoint(this);if(0==d||a>b)a=b,c=d}return c},createMovieClip:function(a,c,d){a=a.createEmptyMovieClip(c,d);this.make();for(c=0;c=f;f++)for(var i=-2;2>=i;i++)this.modules[b+f][e+i]=-2==f||2==f||-2==i||2==i||0==f&&0==i?!0:!1}},setupTypeNumber:function(a){for(var c= 7 | j.getBCHTypeNumber(this.typeNumber),d=0;18>d;d++){var b=!a&&1==(c>>d&1);this.modules[Math.floor(d/3)][d%3+this.moduleCount-8-3]=b}for(d=0;18>d;d++)b=!a&&1==(c>>d&1),this.modules[d%3+this.moduleCount-8-3][Math.floor(d/3)]=b},setupTypeInfo:function(a,c){for(var d=j.getBCHTypeInfo(this.errorCorrectLevel<<3|c),b=0;15>b;b++){var e=!a&&1==(d>>b&1);6>b?this.modules[b][8]=e:8>b?this.modules[b+1][8]=e:this.modules[this.moduleCount-15+b][8]=e}for(b=0;15>b;b++)e=!a&&1==(d>>b&1),8>b?this.modules[8][this.moduleCount- 8 | b-1]=e:9>b?this.modules[8][15-b-1+1]=e:this.modules[8][15-b-1]=e;this.modules[this.moduleCount-8][8]=!a},mapData:function(a,c){for(var d=-1,b=this.moduleCount-1,e=7,f=0,i=this.moduleCount-1;0g;g++)if(null==this.modules[b][i-g]){var n=!1;f>>e&1));j.getMask(c,b,i-g)&&(n=!n);this.modules[b][i-g]=n;e--; -1==e&&(f++,e=7)}b+=d;if(0>b||this.moduleCount<=b){b-=d;d=-d;break}}}};o.PAD0=236;o.PAD1=17;o.createData=function(a,c,d){for(var c=p.getRSBlocks(a, 9 | c),b=new t,e=0;e8*a)throw Error("code length overflow. ("+b.getLengthInBits()+">"+8*a+")");for(b.getLengthInBits()+4<=8*a&&b.put(0,4);0!=b.getLengthInBits()%8;)b.putBit(!1);for(;!(b.getLengthInBits()>=8*a);){b.put(o.PAD0,8);if(b.getLengthInBits()>=8*a)break;b.put(o.PAD1,8)}return o.createBytes(b,c)};o.createBytes=function(a,c){for(var d= 10 | 0,b=0,e=0,f=Array(c.length),i=Array(c.length),g=0;g>>=1;return c},getPatternPosition:function(a){return j.PATTERN_POSITION_TABLE[a-1]},getMask:function(a,c,d){switch(a){case 0:return 0==(c+d)%2;case 1:return 0==c%2;case 2:return 0==d%3;case 3:return 0==(c+d)%3;case 4:return 0==(Math.floor(c/2)+Math.floor(d/3))%2;case 5:return 0==c*d%2+c*d%3;case 6:return 0==(c*d%2+c*d%3)%2;case 7:return 0==(c*d%3+(c+d)%2)%2;default:throw Error("bad maskPattern:"+ 14 | a);}},getErrorCorrectPolynomial:function(a){for(var c=new q([1],0),d=0;dc)switch(a){case 1:return 10;case 2:return 9;case s:return 8;case 8:return 8;default:throw Error("mode:"+a);}else if(27>c)switch(a){case 1:return 12;case 2:return 11;case s:return 16;case 8:return 10;default:throw Error("mode:"+a);}else if(41>c)switch(a){case 1:return 14;case 2:return 13;case s:return 16;case 8:return 12;default:throw Error("mode:"+ 15 | a);}else throw Error("type:"+c);},getLostPoint:function(a){for(var c=a.getModuleCount(),d=0,b=0;b=g;g++)if(!(0>b+g||c<=b+g))for(var h=-1;1>=h;h++)0>e+h||c<=e+h||0==g&&0==h||i==a.isDark(b+g,e+h)&&f++;5a)throw Error("glog("+a+")");return l.LOG_TABLE[a]},gexp:function(a){for(;0>a;)a+=255;for(;256<=a;)a-=255;return l.EXP_TABLE[a]},EXP_TABLE:Array(256), 17 | LOG_TABLE:Array(256)},m=0;8>m;m++)l.EXP_TABLE[m]=1<m;m++)l.EXP_TABLE[m]=l.EXP_TABLE[m-4]^l.EXP_TABLE[m-5]^l.EXP_TABLE[m-6]^l.EXP_TABLE[m-8];for(m=0;255>m;m++)l.LOG_TABLE[l.EXP_TABLE[m]]=m;q.prototype={get:function(a){return this.num[a]},getLength:function(){return this.num.length},multiply:function(a){for(var c=Array(this.getLength()+a.getLength()-1),d=0;d 18 | this.getLength()-a.getLength())return this;for(var c=l.glog(this.get(0))-l.glog(a.get(0)),d=Array(this.getLength()),b=0;b>>7-a%8&1)},put:function(a,c){for(var d=0;d>>c-d-1&1))},getLengthInBits:function(){return this.length},putBit:function(a){var c=Math.floor(this.length/8);this.buffer.length<=c&&this.buffer.push(0);a&&(this.buffer[c]|=128>>>this.length%8);this.length++}};"string"===typeof h&&(h={text:h});h=r.extend({},{render:"canvas",width:256,height:256,typeNumber:-1, 26 | correctLevel:2,background:"#ffffff",foreground:"#000000"},h);return this.each(function(){var a;if("canvas"==h.render){a=new o(h.typeNumber,h.correctLevel);a.addData(h.text);a.make();var c=document.createElement("canvas");c.width=h.width;c.height=h.height;for(var d=c.getContext("2d"),b=h.width/a.getModuleCount(),e=h.height/a.getModuleCount(),f=0;f").css("width",h.width+"px").css("height",h.height+"px").css("border","0px").css("border-collapse","collapse").css("background-color",h.background);d=h.width/a.getModuleCount();b=h.height/a.getModuleCount();for(e=0;e").css("height",b+"px").appendTo(c);for(i=0;i").css("width", 28 | d+"px").css("background-color",a.isDark(e,i)?h.foreground:h.background).appendTo(f)}}a=c;jQuery(a).appendTo(this)})}})(jQuery); -------------------------------------------------------------------------------- /wallet_light/js/qrcode.php: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | phpBitAdmin - Bitcoin Mobile Wallet 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 22 | -------------------------------------------------------------------------------- /wallet_light/pay.php: -------------------------------------------------------------------------------- 1 | setSession($scheme, $server_ip, $server_port, $rpc_user, $rpc_pass, $btc_addr, $p_phrase); 7 | } else { 8 | $session = true; 9 | } 10 | if( $session ) { 11 | $check_server = $wallet->ping($scheme, $server_ip, $server_port); 12 | if ( $check_server == '' || empty($check_server) ) { 13 | die (' The bitcoind server located at '. $scheme.'://'.$server_port.' on Port:['.$server_port.'] appears to be unresponsive.'); 14 | } 15 | $check_login = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'getinfo') ; 16 | if ( !is_array($check_login) ) { 17 | die (' There was an error with your Log In parameters. Is your RPC Username and Password correct?'); 18 | } 19 | } 20 | 21 | $btcRate = $wallet->bitcoinConverter(0); 22 | 23 | $url = urldecode($_SERVER['REQUEST_URI']); 24 | $qs = parse_url($url); 25 | $query = $qs['query']; 26 | $query = urldecode($query); 27 | 28 | if( isset($query) ) { 29 | 30 | $add_len = strlen($_REQUEST['address']); 31 | $address = $_REQUEST['address']; 32 | $amount = $_REQUEST['amount']; 33 | $message = urlencode($_REQUEST['message']); 34 | } 35 | ?> 36 | 37 | 38 | 39 | 40 | 41 | phpBitAdmin - Bitcoin Mobile Wallet 42 | 43 | 44 | 45 | 46 | 171 | 175 | 176 | 177 |
178 | 179 |
180 |

 phpBitAdmin

181 | Scan 182 |
183 | 188 |
189 |
190 | 191 |
192 | 193 |
194 | 195 | 196 |
197 | 198 |
199 | 200 | 201 |
202 | 203 |
204 | 205 | 206 |
207 | 208 |
209 | 210 |
211 | 212 |
213 |
214 |
215 |
216 |
217 | 218 |
219 |  -BTC
220 |  -Fee
221 |   TOTAL 222 |
223 | 224 |
225 |
226 |

Payment Sent!

227 |
228 |
229 |
230 |
  231 | Close 232 |
233 |
234 | 235 |
236 | 237 |
238 |
239 | 244 |
245 |
246 | 247 |
248 | 249 | 250 | 251 | -------------------------------------------------------------------------------- /wallet_light/php/phpSend.php: -------------------------------------------------------------------------------- 1 | rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'validateaddress',$address); 15 | if(!$valid_address){ 16 | die($address . ' = Invalid Bitcoin Address'); 17 | } else { 18 | $status = 'valid'; 19 | } 20 | 21 | // check if wallet is encrypted or not. 22 | $check_login = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'getinfo') ; 23 | if ( !is_array($check_login) ) { 24 | die (' There was an error with your Log In parameters. Is your RPC Username and Password correct?'); 25 | } else { 26 | if (array_key_exists('unlocked_until',$check_login)) { 27 | $encrypted = 'True'; 28 | } else { 29 | $encrypted = 'False'; 30 | } 31 | } 32 | 33 | // we need to unlock an encrypted wallet to send bitcoins. 34 | if($encrypted === 'True'){ 35 | $pp_params = '"'.$passphrase.'",10'; 36 | $wp = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'walletpassphrase',$pp_params); // unlock wallet 37 | if ($wp===true) { 38 | $status = 'valid'; 39 | } else { 40 | die($passphrase . ' = Invalid Passphrase'); 41 | } 42 | } 43 | 44 | // okay, send bitcoins. 45 | if( $status == 'valid') { 46 | if( $message=='') { 47 | $send_params = $address . ', ' . $amount; 48 | } else { 49 | $send_params = $address . ', ' . $amount . ', ' . $message; 50 | } 51 | $query = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'sendtoaddress',$send_params); 52 | print 'SENT TO: '.$address.'
AMOUNT: '.$amount.'
MESSAGE: '.$message; 53 | } 54 | ob_flush(); 55 | ?> -------------------------------------------------------------------------------- /wallet_light/php/phpbitadmin.class.php: -------------------------------------------------------------------------------- 1 | $va) { 9 | $sorter[$ii]=$va[$key]; 10 | } 11 | natcasesort($sorter); 12 | foreach ($sorter as $ii => $va) { 13 | $ret[$ii]=$array[$ii]; 14 | } 15 | return $ret; 16 | } 17 | 18 | public function bitcoinConverter($currancy) { 19 | $url = "https://bitpay.com/api/rates"; 20 | $json = file_get_contents($url); 21 | $data = json_decode($json, TRUE); 22 | $rate = $data[$currancy]["rate"]; 23 | $usd_price = 1; 24 | $current_price = round( $usd_price / $rate , 6 ); 25 | return $rate; 26 | } 27 | 28 | public function ping($scheme,$ip,$port){ 29 | 30 | $url = $scheme.'://'.$ip; 31 | $ch = curl_init(); 32 | curl_setopt($ch, CURLOPT_URL,$url); 33 | curl_setopt ($ch, CURLOPT_PORT , $port); 34 | curl_setopt ($ch, CURLOPT_TIMEOUT , 1); 35 | curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); 36 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 37 | $result = curl_exec($ch); 38 | curl_close($ch); 39 | return $result; 40 | } 41 | 42 | public function rpc($scheme,$ip,$port,$rpcuser,$rpcpass,$command,$params=null){ 43 | 44 | $url = $scheme.'://'.$ip.':'.$port.'/'; 45 | $request = '{"jsonrpc": "1.0", "id":"phpBitAdmin", "method": "'.$command.'", "params": ['.$params.'] }'; 46 | 47 | $ch = curl_init($url); 48 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 49 | curl_setopt($ch, CURLOPT_BINARYTRANSFER,true); 50 | curl_setopt($ch, CURLOPT_USERPWD, "$rpcuser:$rpcpass"); 51 | curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type: text/plain')); 52 | curl_setopt($ch, CURLOPT_POST, true); 53 | curl_setopt($ch, CURLOPT_POSTFIELDS, $request); 54 | $response = curl_exec($ch); 55 | $response = json_decode($response,true); 56 | $result = $response['result']; 57 | $error = $response['error']; 58 | curl_close($ch); 59 | 60 | switch($command){ 61 | 62 | case "validateaddress": 63 | return ($result['isvalid']); 64 | break; 65 | case "walletpassphrase": 66 | if( empty($result) && empty($error) ) { 67 | return true; 68 | } else { 69 | return ''.nl2br(htmlentities($response['error']['message'])).''; 70 | } 71 | break; 72 | default: 73 | if (!is_null($error) ) { 74 | return $response['error']['message']; 75 | } else { 76 | return $result; 77 | } 78 | } 79 | 80 | } // /rpc 81 | 82 | public function setSession($scheme,$ip,$port,$user,$pass,$btc_addr,$p_phrase){ 83 | $_SESSION['PHPBITADMIN']['BITCOIND_SCHEME'] = $scheme; 84 | $_SESSION['PHPBITADMIN']['BITCOIND_IP'] = $ip; 85 | $_SESSION['PHPBITADMIN']['BITCOIND_PORT'] = $port; 86 | $_SESSION['PHPBITADMIN']['BITCOIND_RPC_USER'] = $user; 87 | $_SESSION['PHPBITADMIN']['BITCOIND_RPC_PASS'] = $pass; 88 | $_SESSION['PHPBITADMIN']['BITCOIND_BTC_ADDRESS']= $btc_addr; 89 | $_SESSION['PHPBITADMIN']['BITCOIND_PASSPHRASE'] = $p_phrase; 90 | $_SESSION['PHPBITADMIN']['LOGIN'] = true; 91 | $_SESSION['PHPBITADMIN']['LOGIN_TIME'] = time(); 92 | $_SESSION['PHPBITADMIN']['EXPIRE_TIME'] = $_SESSION['PHPBITADMIN']['LOGIN_TIME'] + (20 * 60); // set expiration for 20 minutes. 93 | return true; 94 | } 95 | } -------------------------------------------------------------------------------- /wallet_light/scan.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | phpBitAdmin - Bitcoin Mobile Wallet 7 | 8 | 9 | 10 | 11 | 12 | 51 | 52 | 53 |
54 | 55 |
56 |

 phpBitAdmin

57 | Scan 58 |
59 | 64 |
65 |
66 | 67 |
68 |
69 |

70 | WebRTC requires you to "Allow" camera access. 71 | 72 | 73 |
74 |
75 | 76 |
77 |
78 | 83 |
84 |
85 | 86 |
87 | 88 | 89 | 90 | -------------------------------------------------------------------------------- /wallet_light/settings.php: -------------------------------------------------------------------------------- 1 | setSession($scheme, $server_ip, $server_port, $rpc_user, $rpc_pass, $btc_addr, $p_phrase); 7 | } else { 8 | $session = true; 9 | } 10 | if( $session ) { 11 | $check_server = $wallet->ping($scheme, $server_ip, $server_port); 12 | if ( $check_server == '' || empty($check_server) ) { 13 | die (' The bitcoind server located at '. $scheme.'://'.$server_port.' on Port:['.$server_port.'] appears to be unresponsive.'); 14 | } 15 | $check_login = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'getinfo') ; 16 | if ( !is_array($check_login) ) { 17 | die (' There was an error with your Log In parameters. Is your RPC Username and Password correct?'); 18 | } 19 | } 20 | ?> 21 | 22 | 23 | 24 | 25 | 26 | phpBitAdmin - Bitcoin Mobile Wallet 27 | 28 | 29 | 30 | 31 | 36 | 37 | 38 |
39 |
40 |

 phpBitAdmin

41 | Scan 42 |
43 | 48 |
49 |
50 | 51 |
52 |
53 | 54 | 55 |
56 | 57 |
58 | 59 | 60 |
61 | 62 |
63 | 64 | 65 |
66 | 67 |
68 | 69 | 70 |
71 |
72 | 73 |
74 | 75 |
76 | 77 |
78 |
79 | 84 |
85 |
86 | 87 |
88 | 89 | 90 | 91 | -------------------------------------------------------------------------------- /wallet_light/transactions.php: -------------------------------------------------------------------------------- 1 | setSession($scheme, $server_ip, $server_port, $rpc_user, $rpc_pass, $btc_addr, $p_phrase); 7 | } else { 8 | $session = true; 9 | } 10 | if( $session ) { 11 | $check_server = $wallet->ping($scheme, $server_ip, $server_port); 12 | if ( $check_server == '' || empty($check_server) ) { 13 | die (' The bitcoind server located at '. $scheme.'://'.$server_port.' on Port:['.$server_port.'] appears to be unresponsive.'); 14 | } 15 | $check_login = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'getinfo') ; 16 | if ( !is_array($check_login) ) { 17 | die (' There was an error with your Log In parameters. Is your RPC Username and Password correct?'); 18 | } 19 | } 20 | 21 | $params = '"",100,0'; 22 | $query = $wallet->rpc($scheme,$server_ip,$server_port,$rpc_user,$rpc_pass,'listsinceblock'); 23 | $trans = $query["transactions"]; 24 | $trans_sorted = $wallet->aasort($trans,"time"); 25 | $transactions = array_reverse($trans_sorted); ?> 26 | 27 | 28 | 29 | 30 | 31 | phpBitAdmin - Bitcoin Wallet 32 | 33 | 34 | 35 | 36 | 41 | 42 | 43 |
44 |
45 |

 phpBitAdmin

46 | Scan 47 |
48 | 53 |
54 |
55 | 56 |
57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | $val) { 73 | switch ($key) { 74 | case "account": 75 | $account = $val; 76 | break; 77 | case "address": 78 | $address = $val; 79 | break; 80 | case "amount": 81 | if ((int)$val < 0) {$negative = true;} 82 | $amount = number_format($val, 4, '.', ' ') ; 83 | break; 84 | case "category": 85 | $category = $val; 86 | break; 87 | case "comment": 88 | $comment = $val; 89 | break; 90 | case "confirmations": 91 | $confirmations = $val; 92 | break; 93 | case "time": 94 | $time = date('m-d-y H:i', $val); 95 | break; 96 | case "fee": 97 | $fee = $val; 98 | } 99 | } 100 | 101 | if ($category == 'send') { 102 | $amount = $amount + $fee; 103 | $category = 'Sent'; 104 | } 105 | if ($category == 'receive') {$category = 'Received';} 106 | if ($amount < 0) {$negative = true;}else{$negative=false;} 107 | if ($confirmations >= 6) { 108 | $conf_img = 'images/check-green.png'; 109 | } else { 110 | $conf_img = 'images/check-red.png'; 111 | } 112 | print ''; 113 | print ''; 114 | print ''; 115 | print ''; 116 | print ''; 117 | if($negative){ 118 | print ''; 119 | } else { 120 | print ''; 121 | } 122 | print ''; 123 | 124 | $i++; 125 | $account = $address = $amount = $category = $comment = $confirmations = $fee = $negative = $time = ''; 126 | } 127 | ?> 128 | 129 |
DateConfirmedTypeAddressAmount
'.$time.' ['.$confirmations.']'.$category.''.$address.''.$amount.''.$amount.'
130 | 131 | 132 |
133 | 134 |
135 |
136 | 141 |
142 | 143 |
144 | 145 |
146 | 147 | 148 | 149 | --------------------------------------------------------------------------------