1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- {if $title eq ''}
- <title>Sondaje | Fundația Ceata</title>
- {else}
- <title>Sondaj: {$title} | Fundația Ceata</title>
- {/if}
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <link rel="stylesheet" type="text/css" href="css/fufl.css" />
- </head>
- <body>
- <div id="page">
- <div id="header">
- </div>
- <div id="menu">
- <ul>
- <li> <a href="newpoll.php"> New poll </a> </li>
- {if $username eq ''}
- <script type="text/javascript" src="js/login.js"></script>
- <li class="right"> <a href="#" onclick="popup('popup_register.php');"> Register </a> </li>
- <li class="right"> <a href="#" onclick="popup('popup_login.php');"> Log in </a> </li>
- {else}
- <li class="right"> <a href="account/logout.php"> Log out </a> </li>
- <li class="right"> <a href="mypolls.php"> My polls </a> </li>
- {/if}
- </ul>
- </div>
-
|