Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
20 | moos | 1 | <%@taglib uri="/struts-tags" prefix="s"%> |
2 | <html> |
||
3 | <head> |
||
4 | <title>User erstellen</title> |
||
5 | </head> |
||
6 | <body> |
||
7 | |||
8 | <h1>User Hinzufügen</h1> |
||
9 | <p>Noch nicht umgesetzt...</p> |
||
10 | <s:form action="doUserAdd"> |
||
11 | <s:textfield name="username" label="User Name" /> |
||
12 | <s:password name="password" label="Password" /> |
||
13 | <s:textfield name="firstname" label="Vorname" /> |
||
14 | <s:textfield name="lastname" label="Nachname" /> |
||
15 | <s:checkbox name="admin" |
||
16 | label="Soll der User admin sein?" /> |
||
17 | <s:submit value="Add" /> |
||
18 | </s:form> |
||
19 | </body> |
||
20 | </html> |