Wed, 05 Jun 2013 20:24:06 +0200
Use protocol agnostic URIs for consistence across project.
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <!-- |
michael@0 | 3 | OTPWCalc - One time password challenge response calculator client |
michael@0 | 4 | Copyright © 2013 Michael Schloh von Bennewitz <michael@schloh.com> |
michael@0 | 5 | |
michael@0 | 6 | OTPWCalc is free software: you can redistribute it and/or modify |
michael@0 | 7 | it under the terms of the European Union Public Licence, either |
michael@0 | 8 | version 1.1 of the license, or (at your option) any later version. |
michael@0 | 9 | |
michael@0 | 10 | OTPWCalc is distributed in the hope that it will be useful, |
michael@0 | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty |
michael@0 | 12 | of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
michael@0 | 13 | the European Union Public License for more details. |
michael@0 | 14 | |
michael@0 | 15 | You should have received a copy of the European Union Public |
michael@0 | 16 | Licence along with OTPWCalc. If not, please refer to |
michael@0 | 17 | <http://joinup.ec.europa.eu/software/page/eupl/>. |
michael@0 | 18 | |
michael@0 | 19 | This file is part of project OTWPCalc, a one time password challenge |
michael@0 | 20 | response calculator client and is found at http://otpwcalc.europalab.com/ |
michael@0 | 21 | |
michael@0 | 22 | about.html: W3C HTML implementation |
michael@0 | 23 | --> |
michael@0 | 24 | |
michael@0 | 25 | <html> |
michael@0 | 26 | <head> |
michael@0 | 27 | <meta charset="utf-8"> |
michael@0 | 28 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
michael@0 | 29 | <title>OTPWCalc</title> |
michael@0 | 30 | <link rel="stylesheet" href="jquery.mobile/jquery.mobile-1.3.1.min.css" /> |
michael@8 | 31 | <script src="jquery.core/jquery-1.10.1.min.js"></script> |
michael@0 | 32 | <script type="text/javascript"> |
michael@0 | 33 | $(document).on("pageinit", "#unknown", function() { |
michael@0 | 34 | // If this device supports the vibrate API... |
michael@0 | 35 | if('vibrate' in navigator) { |
michael@0 | 36 | // ...vibrate for a second |
michael@0 | 37 | navigator.vibrate(1000); |
michael@0 | 38 | } |
michael@0 | 39 | alert("Pageinit is bound!"); |
michael@0 | 40 | }); |
michael@0 | 41 | </script> |
michael@0 | 42 | <script src="jquery.mobile/jquery.mobile-1.3.1.min.js"></script> |
michael@0 | 43 | </head> |
michael@0 | 44 | <body> |
michael@0 | 45 | <!-- Data attributes reserved by JQuery Mobile: |
michael@0 | 46 | data-theme, data-ajax, data-filter, data-icon, data-grid, |
michael@0 | 47 | data-rel, data-icon, data-url, data-role, and data-type --> |
michael@0 | 48 | <div data-role="page" class="type-interior"> |
michael@0 | 49 | <!-- H1 header data-role good for Search Engine Optimization --> |
michael@0 | 50 | <!--<div data-role="header" data-position="inline">--> |
michael@0 | 51 | <div data-role="header" data-id="headabout"> |
michael@0 | 52 | <h1>About</h1> |
michael@0 | 53 | </div><!-- /header --> |
michael@0 | 54 | <div data-role="content"> |
michael@0 | 55 | <h1 style="float: left; margin: 0 0 0.25em;">OTPWCalc</h1> |
michael@0 | 56 | <img src="img/tastatur.png" alt="Computer keyboard" height="38" width="90" style="float: right;" /> |
michael@4 | 57 | <h2 style="clear: both; margin-left: 1em; line-height: 1em;">One Time Password Calculator 0.7.2</h2> |
michael@0 | 58 | <img src="img/datahost.png" alt="Datacenter host computer" height="68" width="245" style="display: block; margin: 0.75em auto;" /> |
michael@9 | 59 | <p>Visit the <a target="_blank" href="//otpwcalc.europalab.com/">OTPWCalc Homepage</a></p> |
michael@9 | 60 | <p>Copyright © 2012 – 2013<br /><a target="_blank" href="//michael.schloh.com/">Michael Schloh von Bennewitz</a></p> |
michael@9 | 61 | <p>This software is distributed under the terms of the <a target="_blank" href="//joinup.ec.europa.eu/software/page/eupl/">European Union Public Licence (EUPL) version 1.1</a></p> |
michael@0 | 62 | </div><!-- /content --> |
michael@0 | 63 | </div><!-- /page --> |
michael@0 | 64 | </body> |
michael@0 | 65 | </html> |