src/tizen/help/help.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.

     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 help.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="../css/jquery.mobile-1.3.2.min.css" />
    31     <link rel="stylesheet" href="../main.css" />
    32     <script src="../js/jquery-2.0.0.min.js"></script>
    33     <script src="help.js"></script>
    34     <script src="../js/jquery.mobile-1.3.2.min.js"></script>
    35 </head>
    36 <body>
    37     <!-- Data attributes reserved by JQuery Mobile:
    38          data-theme, data-ajax, data-filter, data-icon, data-grid,
    39          data-rel, data-icon, data-url, data-role, and data-type -->
    40     <!-- Also data-dom-cache="true" -->
    41     <div data-role="page" class="type-interior oc-swipage" id="helphaupt">
    42         <!-- H1 header data-role good for Search Engine Optimization -->
    43         <!--<div data-role="header" data-position="inline">-->
    44         <div data-role="header" data-position="fixed" data-id="headhelp">
    45             <h1>OTPWCalc</h1>
    46         </div><!-- /header -->
    47         <div data-role="content">
    48             <div class="content-primary">
    49                 <h1 style="text-align: center; margin: 0;">Help</h1>
    50                 <a href="hfaq.html" data-prefetch="true" data-role="button" data-transition="slide" data-theme="e" data-icon="otpwcalc-question" data-iconpos="right">F. A. Q.</a>
    51                 <a href="hqst.html" data-prefetch="true" data-role="button" data-transition="slide" data-theme="e" data-icon="otpwcalc-qstart" data-iconpos="right">Quickstart</a>
    52                 <a href="hman.html" data-prefetch="true" data-role="button" data-transition="slide" data-theme="e" data-icon="otpwcalc-manpage" data-iconpos="right">Manpage</a>
    53         <a target="_blank" href="http://list.europalab.com/mailman/listinfo/otpwcalc/" data-role="button" data-transition="slide" data-theme="e" data-icon="otpwcalc-email" data-iconpos="right">Mailinglist</a>
    54                 <a href="hsec.html" data-prefetch="true" data-role="button" data-transition="slide" data-theme="e" data-icon="otpwcalc-security" data-iconpos="right">Security</a>
    55                 <a href="hsta.html" data-prefetch="true" data-role="button" data-transition="slide" data-theme="e" data-icon="otpwcalc-document" data-iconpos="right">Standards</a>
    56             </div><!-- /content-primary -->
    57         </div><!-- /content -->
    58     </div><!-- /page -->
    59 </body>
    60 </html>

mercurial