r349: Styled the login form
[bugdar.git] / templates / login.tpl
1 $doctype
2 <html lang="$stylevar[lang]" xml:lang="$stylevar[lang]">
3 <head>
4 $headinclude
5 <title>{$bugsys->options['trackertitle']} - Login</title>
6 </head>
7
8 $header
9
10 <form action="login.php" name="register" method="post">
11 <input type="hidden" name="do" value="login" />
12 <input type="hidden" name="goindex" value="1" />
13
14 <div align="center" style="margin-top: 10px">
15 <div class="tborder" style="padding: 1px; width: $stylevar[alternate_width]">
16 <div class="thead" style="padding: 2px; margin-bottom: 1px; text-align: left">Login</div>
17 <div class="tmiddle" style="padding: 8px; text-align: left; margin-bottom: 1px">
18 <div><strong>Email:</strong> <input type="text" name="email" size="30" /></div>
19 <div><strong>Password:</strong> <input type="password" name="password" size="30" /></div>
20 <div><strong>Remember Me:</strong> <input type="checkbox" name="rememberme" value="1" checked="checked" /> Yes</div>
21 <br />
22 <a href="register.php">Click here if you do not have an account...</a>
23 </div>
24 <div class="tfoot" style="padding: 2px">
25 <input type="submit" name="submit" value=" Login " accesskey="s" />
26 <input type="reset" name="reset" value=" Reset " accesskey="r" />
27 </div>
28 </div>
29 </div>
30
31 </form>
32
33 $footer