src/tizen/about.html

Wed, 31 Jul 2013 19:48:00 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Jul 2013 19:48:00 +0200
changeset 14
d1b294812560
permissions
-rw-r--r--

Introduce port to the Tizen OS.

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

mercurial