Statistics
| Revision:

root / hci / trunk / eneraptor-web-app / grails-app / views / chooseHwSet / main.gsp @ 66

History | View | Annotate | Download (1.13 KB)

1
<html>
2

    
3
<head>
4
	<title>Eneraptor &raquo; Hardware set (card) selection</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="Hardware set selection">
18
				
19
				<p>Before you continue using Eneraptor, please choose hardware set (card) to control:</p>
20

    
21
				<g:form action="mainDo">
22
				
23
					<g:select name="hwSet" from="${hwSets}" optionKey="id" optionValue="name" style="width:350px;" />
24
					&nbsp;
25
					<g:submitButton name="mainSubmit" value="Select" />
26
					<br /><br />
27
					<g:link action="addNew" style="float:right;"><erptr:icon w="add" />&nbsp;Add new...</g:link>
28
					
29
					<br />
30
					
31
				</g:form>
32
				
33
			</erptr:box>
34
		</div>
35
	</center>
36
</body>
37

    
38
</html>