Advertisement
Guest User

Untitled

a guest
Dec 28th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <head>
  2. <title></title>
  3. <link href="css/style.css" rel="stylesheet" type="text/css"/>
  4. </head>
  5. <body>
  6. <form:form action="newclientpage" method="post" modelAttribute="client">
  7. <div id="client-buttons">
  8. <input type="button" class="client-button" name="client-action" value="Add Client"/>
  9. <input type="button" class="client-button" name="client-action" value="Del Client"/>
  10. <input type="button" class="client-button" name="client-action" value="Edit Client"/><br>
  11. <input type="button" class="show-client-button" name="client-action" value="Show client details"/>
  12. </div>
  13. <div id="clients-list">
  14. <form:select cssClass="clients-list" path="displayName" size="25">
  15. <form:options items="${listOfClients}" itemValue="displayName" itemLabel="displayName"/>
  16. </form:select>
  17. </div>
  18. </form:form>
  19. </body>
  20.  
  21. #client-buttons {
  22. position: absolute;
  23. }
  24.  
  25. .client-button {
  26. width: 80px;
  27. height: 10px;
  28. }
  29.  
  30. .show-client-button {
  31. height: 20px;
  32. width: 250px;
  33. }
  34.  
  35. .client-list {
  36. width: 130px;
  37. }
  38.  
  39. web
  40. -pages
  41. -css
  42. -style.css
  43. -.jsp
  44. -WEB-INF
  45. -web.xml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement