Guest User

logged.html

a guest
Nov 23rd, 2013
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.40 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl-PL">
  3.  
  4.     <head>
  5.         <title>wtq site</title>
  6.         <meta name="description" content="Portfolio">
  7.         <meta name="author" content="Robert Witkowski">
  8.         <meta charset="UTF-8">
  9.         <link rel="stylesheet" href="{{ assets }}/css/style.css" type="text/css">
  10.         <link rel="stylesheet" href="{{ assets }}/css/login.css" type="text/css">
  11.     </head>
  12.  
  13.     <body>
  14.         <header id="page_header">
  15.             <h1><embed id="svg" src="http://len.iem.pw.edu.pl/~witkowr1/img/wtq.svg" type="image/svg+xml" /></h1>
  16.         </header>
  17.  
  18.         <div id="caly">
  19.             <nav id="menu">
  20.                 <h3>Programowanie internetowe</h3>
  21.                 <ul>
  22.                     <li><a href="#">Index</a></li>
  23.                     <li><a href="#">Ćwiczenie 1</a></li>
  24.                     <li><a href="#">Ćwiczenie 2</a></li>
  25.                     <li><a href="#">Ćwiczenie 3</a></li>
  26.                     <li><a href="#">Ćwiczenie 4</a></li>
  27.                     <li><a href="#">Ćwiczenie 5</a></li>
  28.                     <li><a href="#">Ćwiczenie 6</a></li>
  29.                 </ul>
  30.             </nav>
  31.  
  32.             <section id="posts">  
  33.                  <header>
  34.                     <h2>Ćwiczenie 3 - Logowanie</h2>  
  35.                 </header>
  36.  
  37.                 <h3>Witaj {{ name }}!</h3>
  38.                 <p>Ostatnie logowanie: {{ date_last_login }}</p>
  39.                 <form id="formularz" class="form" method="post" action="http://len.iem.pw.edu.pl/~witkowr1/apps/demo/logout" >
  40.                     <fieldset>
  41.                         <div class="pole">
  42.                             <input id="submit" type="submit" value="Wyloguj" />
  43.                         </div>
  44.                     </fieldset>
  45.                 </form>
  46.             </section>
  47.  
  48.             <nav id="sidebarauthor">    
  49.                 <h3>Autor</h3>
  50.                 <ul>
  51.                     <li><p id="name">Robert Witkowski</p></li>
  52.                     <li><p><a id="email" href="mailto:[email protected]">[email protected]</a></p></li>
  53.                 </ul>
  54.             </nav>
  55.  
  56.             <footer id="page_footer">
  57.                 <p>&copy; 2013 Witkowski Robert</p>
  58.                 <p><a href="http://validator.w3.org/check?uri=referer"><img src="http://len.iem.pw.edu.pl/~witkowr1/img/w3c.jpg" alt="validator"></a></p>
  59.             </footer>
  60.         </div>
  61.     </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment