src/firefoxos/about.html

Mon, 22 Apr 2013 22:00:43 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Mon, 22 Apr 2013 22:00:43 +0200
changeset 0
6a0957738c54
child 4
5d1908d87db8
permissions
-rw-r--r--

Import pristine sources of new project OTPWCalc.

     1 <!DOCTYPE html>
     2 <!--
     3 OTPWCalc - One time password challenge response calculator client
     4 Copyright © 2013 Michael Schloh von Bennewitz <michael@schloh.com>
     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.
    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.
    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/>.
    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/
    22 about.html: W3C HTML implementation
    23 -->
    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="jquery.mobile/jquery.mobile-1.3.1.min.css" />
    31     <script src="jquery.core/jquery-1.9.1.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="jquery.mobile/jquery.mobile-1.3.1.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.1</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 href="http://otpwcalc.europalab.com/">OTPWCalc Homepage</a></p>
    60             <p>Copyright &copy; 2012 &#8211; 2013<br /><a href="http://michael.schloh.com/">Michael Schloh von Bennewitz</a></p>
    61             <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>
    62         </div><!-- /content -->
    63     </div><!-- /page -->
    64 </body>
    65 </html>

mercurial