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