|
Revision 152, 0.8 KB
(checked in by dez, 7 years ago)
|
|
Adds new mail check
|
| Line | |
|---|
| 1 | <div id="loginForm"> |
|---|
| 2 | <form method="post" action="{$ssl_url|escape:'htmlall'}"> |
|---|
| 3 | <div> |
|---|
| 4 | {if $session->loggedin} |
|---|
| 5 | Logged in as {$session->username}<br/> |
|---|
| 6 | {if $session->email=="0"} |
|---|
| 7 | No email<br /> |
|---|
| 8 | {elseif $session->email=="1"} |
|---|
| 9 | Email waiting<br /> |
|---|
| 10 | {elseif $session->email=="2"} |
|---|
| 11 | New email<br /> |
|---|
| 12 | {/if} |
|---|
| 13 | <input type="submit" class="button" name="Logout" id="Logout" value="Logout" /> |
|---|
| 14 | {else} |
|---|
| 15 | <label for="session_user">Username</label> <input type="text" class="text" name="session_user" id="session_user" /><br /> |
|---|
| 16 | <label for="session_pass">Password</label> <input type="password" class="text" name="session_pass" id="session_pass" /><br /> |
|---|
| 17 | <input type="submit" class="button" name="Login" id="Login" value="Login" /> |
|---|
| 18 | {/if} |
|---|
| 19 | </div> |
|---|
| 20 | </form> |
|---|
| 21 | </div> |
|---|