Subversion Repositories WebE

Rev

Rev 20 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 20 Rev 22
1
<%@taglib uri="/struts-tags" prefix="s"%>
1
<%@taglib uri="/struts-tags" prefix="s"%>
2
<html>
2
<html>
3
<head>
3
<head>
4
<title>User erstellen</title>
4
<title>User erstellen</title>
5
</head>
5
</head>
6
<body>
6
<body>
7
7
8
<h1>User Hinzuf&uuml;gen</h1>
8
<h1>User hinzuf&uuml;gen</h1>
9
<p>Noch nicht umgesetzt...</p>
9
<p>Bitte geben Sie die Benutzerdaten ein</p>
10
<s:form action="doUserAdd">
10
<s:form action="doUserAdd">
11
	<s:textfield name="username" label="User Name" />
11
	<s:textfield name="username" label="User Name" />
12
	<s:password name="password" label="Password" />
12
	<s:password name="password" label="Password" />
13
	<s:textfield name="firstname" label="Vorname" />
13
	<s:textfield name="firstname" label="Vorname" />
14
	<s:textfield name="lastname" label="Nachname" />
14
	<s:textfield name="lastname" label="Nachname" />
15
	<s:checkbox name="admin"
15
	<s:checkbox name="admin"
16
		label="Soll der User admin sein?" />
16
		label="Soll der User admin sein?" />
17
	<s:submit value="Add" />
17
	<s:submit value="Add" />
18
</s:form>
18
</s:form>
19
</body>
19
</body>
20
</html>
20
</html>