1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/firefoxos/about.html Mon Apr 22 22:00:43 2013 +0200 1.3 @@ -0,0 +1,65 @@ 1.4 +<!DOCTYPE html> 1.5 +<!-- 1.6 +OTPWCalc - One time password challenge response calculator client 1.7 +Copyright © 2013 Michael Schloh von Bennewitz <michael@schloh.com> 1.8 + 1.9 +OTPWCalc is free software: you can redistribute it and/or modify 1.10 +it under the terms of the European Union Public Licence, either 1.11 +version 1.1 of the license, or (at your option) any later version. 1.12 + 1.13 +OTPWCalc is distributed in the hope that it will be useful, 1.14 +but WITHOUT ANY WARRANTY; without even the implied warranty 1.15 +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See 1.16 +the European Union Public License for more details. 1.17 + 1.18 +You should have received a copy of the European Union Public 1.19 +Licence along with OTPWCalc. If not, please refer to 1.20 +<http://joinup.ec.europa.eu/software/page/eupl/>. 1.21 + 1.22 +This file is part of project OTWPCalc, a one time password challenge 1.23 +response calculator client and is found at http://otpwcalc.europalab.com/ 1.24 + 1.25 +about.html: W3C HTML implementation 1.26 +--> 1.27 + 1.28 +<html> 1.29 + <head> 1.30 + <meta charset="utf-8"> 1.31 + <meta name="viewport" content="width=device-width, initial-scale=1"> 1.32 + <title>OTPWCalc</title> 1.33 + <link rel="stylesheet" href="jquery.mobile/jquery.mobile-1.3.1.min.css" /> 1.34 + <script src="jquery.core/jquery-1.9.1.js"></script> 1.35 + <script type="text/javascript"> 1.36 + $(document).on("pageinit", "#unknown", function() { 1.37 + // If this device supports the vibrate API... 1.38 + if('vibrate' in navigator) { 1.39 + // ...vibrate for a second 1.40 + navigator.vibrate(1000); 1.41 + } 1.42 + alert("Pageinit is bound!"); 1.43 + }); 1.44 + </script> 1.45 + <script src="jquery.mobile/jquery.mobile-1.3.1.min.js"></script> 1.46 +</head> 1.47 +<body> 1.48 + <!-- Data attributes reserved by JQuery Mobile: 1.49 + data-theme, data-ajax, data-filter, data-icon, data-grid, 1.50 + data-rel, data-icon, data-url, data-role, and data-type --> 1.51 + <div data-role="page" class="type-interior"> 1.52 + <!-- H1 header data-role good for Search Engine Optimization --> 1.53 + <!--<div data-role="header" data-position="inline">--> 1.54 + <div data-role="header" data-id="headabout"> 1.55 + <h1>About</h1> 1.56 + </div><!-- /header --> 1.57 + <div data-role="content"> 1.58 + <h1 style="float: left; margin: 0 0 0.25em;">OTPWCalc</h1> 1.59 + <img src="img/tastatur.png" alt="Computer keyboard" height="38" width="90" style="float: right;" /> 1.60 + <h2 style="clear: both; margin-left: 1em; line-height: 1em;">One Time Password Calculator 0.7.1</h2> 1.61 + <img src="img/datahost.png" alt="Datacenter host computer" height="68" width="245" style="display: block; margin: 0.75em auto;" /> 1.62 + <p>Visit the <a href="http://otpwcalc.europalab.com/">OTPWCalc Homepage</a></p> 1.63 + <p>Copyright © 2012 – 2013<br /><a href="http://michael.schloh.com/">Michael Schloh von Bennewitz</a></p> 1.64 + <p>This software is distributed under the terms of the <a href="http://joinup.ec.europa.eu/software/page/eupl/">European Union Public Licence (EUPL) version 1.1</a></p> 1.65 + </div><!-- /content --> 1.66 + </div><!-- /page --> 1.67 +</body> 1.68 +</html>