Statistics
| Revision:

root / hci / trunk / eneraptor-web-app / grails-app / views / login / index.gsp @ 11

History | View | Annotate | Download (1 KB)

1
<html>
2

    
3
<head>
4
	<title>Eneraptor &raquo; Authentication</title>
5
	<link rel="stylesheet" type="text/css" href="${g.resource(dir:'css/', file:'theme.css')}" />
6
	<link rel="stylesheet" type="text/css" href="${g.resource(dir:'css/', file:'style.css')}" />
7
	<!--[if IE]>
8
	<link rel="stylesheet" type="text/css" href="${g.resource(dir:'css/', file:'ie-sucks.css')}" />
9
	<![endif]-->
10
</head>
11

    
12
<body>
13
	<center>
14
		<br />
15
		<img src="${g.resource(dir:'img', file:'logo.jpg')}" />
16
		<div style="width:518px;background:white;padding:10px;margin-top:20px;">
17
			<erptr:box title="Authenticate">
18
				<g:form name="hci-login-form" action="sendLoginData">
19
				
20
					<label for="username">Username:</label>
21
					<g:textField name="username" />
22
					<br />
23
					<label for="password">Password:</label>
24
					<g:passwordField name="password" />
25
					<br />
26
					<br />
27
					<g:submitButton name="login-submit" value="Log in" />
28
					<br />
29
					
30
				</g:form>
31
			</erptr:box>
32
		</div>
33
	</center>
34
</body>
35

    
36
</html>