java/UpozorneniEmailem/web/index.jsp
author František Kučera <franta-hg@frantovo.cz>
Sat Mar 07 14:12:27 2009 +0100 (2009-03-07)
changeset 1 f6b8c00ef3d3
parent 0 a8354f90252c
child 2 43a6e33a4854
permissions -rw-r--r--
Přidání knihovny jQuery a základ formuláře
     1 <%@page contentType="text/html" pageEncoding="UTF-8"%>
     2 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
     3 <!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     4 
     5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">
     6     <head>
     7         <meta http-equiv="content-language" content="cs"/>
     8         <meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8"/>
     9         <title>Upozornění e-mailem</title>
    10         <link type="text/css" href="css/ui-lightness/jquery-ui-1.7.custom.css" rel="stylesheet" />
    11         <link type="text/css" href="css/styl.css" rel="stylesheet" />
    12         <script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
    13         <script type="text/javascript" src="js/jquery-ui-1.7.custom.min.js"></script>
    14         <script type="text/javascript" src="js/ui.datepicker-cs.js"></script>
    15     </head>
    16     <body>
    17         <h1>Upozornění e-mailem</h1>
    18 
    19 
    20         <script type="text/javascript">
    21             $(function() {
    22                 $("#tabs").tabs();
    23             });
    24             $(function() {
    25                 $("#datepicker").datepicker();
    26             });
    27 
    28         </script>
    29 
    30 
    31 
    32 
    33         <div id="tabs">
    34             <ul>
    35                 <li><a href="#tabs-1">Přidat upozornění</a></li>
    36                 <li><a href="#tabs-2">Šablony</a></li>
    37                 <li><a href="#tabs-3">Moje upozornění</a></li>
    38             </ul>
    39             <div id="tabs-1">
    40                 <p>
    41                     <form action="?akce=zaloz" method="post">
    42                         <fieldset>
    43                             <label title="Kdy bude odesláno upozornění.">Datum: <input id="datepicker" type="text" name="datum"></label><br/>
    44                             <label title="Předmět upozorňovacího e-mailu.">Předmět: <input type="text" name="Předmět"></label><br/>
    45                             <button title="Vytvoží upozornění a pošle vám potvrzovací e-mail.">Přidat!</button>
    46                         </fieldset>
    47                     </form>
    48                 </p>
    49             </div>
    50             <div id="tabs-2">
    51                 <p>
    52 
    53 
    54                 </p>
    55             </div>
    56             <div id="tabs-3">
    57                 <p>
    58 
    59 
    60                 </p>
    61             </div>
    62         </div>
    63 
    64 
    65         <div class="ui-widget">
    66             <div class="ui-state-highlight ui-corner-all" style="margin-top: 20px; padding: 0 .7em;">
    67                 <p>Tady bude informace o licenci.</p>
    68             </div>
    69         </div>
    70 
    71     </body>
    72 </html>