<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<meta charset="utf-8" />
<title>jQuery UI Accordion - Default functionality</title>
<LINK rel="SHORTCUT ICON" href="./Timbus_icon.png">
<link rel="stylesheet" type="text/css" href="jMetro/jquery-ui.css" />
<link rel="stylesheet" type="text/css" href="jMetro/timbusstyle.css" />
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
<style type="text/css">
body {
font-family: "Segoe UI", Helvetica, Verdana;
font-size: 11px;
margin: 50px;
}
#wrapper {
width: 700px;
}
h1 {
font-weight: normal;
}
.header {
margin-top: 2em;
font-weight: normal;
}
#dialog_link {
padding: .4em 1em .4em 20px;
text-decoration: none;
position: relative;
}
#dialog_link span.ui-icon {
margin: 0 5px 0 0;
position: absolute;
left: .2em;
top: 50%;
margin-top: -8px;
}
ul#icons {
margin: 0;
padding: 0;
}
ul#icons li {
margin: 2px;
position: relative;
padding: 4px 0;
cursor: pointer;
float: left;
list-style: none;
}
ul#icons span.ui-icon {
float: left;
margin: 0 4px;
}
#verticalSliders {
height: 140px;
padding-top: 20px;
}
#verticalSliders>div {
float: left;
margin: 20px;
}
.right {
position: absolute;
top: 0px;
height: 24px;
width: 12px;
margin: 0;
background: white;
border: 0;
}
.right-1 {
right: 0px;
}
.right-2 {
right: 20px
}
.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited
{
background: none;
}
textarea{
resize : none;
}
</style>
</head>
<body>
<div id="wrapper" style="border: 2px solid grey">
<h1 class="header">Please edit projectinfos</h1>
<s:form action="commitAddProjects" theme="simple">
<div class="form-line">
<div style="width:150px; text-align: right">Project's name</div>
<s:textfield cssStyle="position: relative; left:170px; width: 450px" name="project.name" label="Projects name" />
</div>
<div class="form-line">
<div style="width:150px; text-align: right">Project's description</div><s:textarea cssStyle="position: relative; left:170px; width: 450px; height: 150px" name="project.description" label="Description" />
</div>
<s:submit />
</s:form>
</div>
</body>
</html>