source: trunk/templates/login.tmpl@ 750

Last change on this file since 750 was 589, checked in by Kris Deugau, 10 years ago

/trunk

Le sigh. Move a small fragment of HTML from the header back to all the
individual pages that need it, so we can selectively load and use
Javascript, and do some initial tweaking with body.onload.

File size: 1.0 KB
Line 
1<body>
2<div id="main">
3
4<form method="post" action="<TMPL_VAR NAME=script_self>">
5<fieldset>
6<input type="hidden" name="action" value="login" />
7<input type="hidden" name="page" value="login" />
8<input type="hidden" name="target" value="<TMPL_VAR NAME=target>" />
9
10<div id="login">
11<div class="center">DeepNet DNS Administrator v<TMPL_VAR NAME=version></div>
12<br />
13<table id="login2">
14<TMPL_IF loginfailed><tr><td colspan="2" class="errmsg" align="center">Error logging in: Invalid username or password</td></tr></TMPL_IF>
15<TMPL_IF sessexpired><tr><td colspan="2" class="errmsg" align="center">Your session has expired</td></tr></TMPL_IF>
16<tr><td colspan="2" class="title" align="center">Please log in:</td></tr>
17<tr><td class="inputlabel">Username:</td><td><input type="text" name="username" /></td></tr>
18<tr><td class="inputlabel">Password:</td><td><input type="password" name="password" /></td></tr>
19<tr><td colspan="2" class="tblsubmit" align="right"><input type="submit" value="Login" /></td></tr>
20</table>
21</div>
22
23</fieldset>
24</form>
Note: See TracBrowser for help on using the repository browser.