PageRenderTime 120ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/actions/src/main/webapp/WEB-INF/views/apps/new.jsp

http://alageospatialportal.googlecode.com/
JavaServer Pages | 51 lines | 42 code | 9 blank | 0 comment | 0 complexity | 196d12ac6ee248b4f0d7d4e553280d06 MD5 | raw file
  1. <%@ include file="/WEB-INF/views/common/top.jsp" %>
  2. <div id="content">
  3. <div id="header">
  4. <h1>Register your new application</h1>
  5. </div>
  6. <!--close header-->
  7. <div class="section">
  8. <h4>
  9. If you would like to start using the ALA/Spatial web services,
  10. please register your application here
  11. </h4>
  12. <form class="emmet-form fm-v" action="#" method="post">
  13. <fieldset>
  14. <div class="emmet-panel">
  15. <div class="row">
  16. <label for="name">Application name:</label>
  17. <input type="text" id="name" name="name" class="required"
  18. placeholder="Enter the application name"/>
  19. </div>
  20. <div class="row">
  21. <label for="email">Email:</label>
  22. <input type="email" id="email" name="email" class="required"
  23. placeholder="Enter an email address"/>
  24. </div>
  25. <div class="row">
  26. <label for="organisation">Organisation:</label>
  27. <input type="text" id="organisation" name="organisation" class="required"
  28. placeholder="Enter the organisation name"/>
  29. </div>
  30. <div class="row">
  31. <label for="description">Description:</label>
  32. <textarea id="description" name="description" class="required"
  33. placeholder="Enter your application description"></textarea>
  34. </div>
  35. <input type="submit" value="Register"/>
  36. </div>
  37. </fieldset>
  38. </form>
  39. </div>
  40. </div>
  41. <!--close content-->
  42. <%@ include file="/WEB-INF/views/common/bottom.jsp" %>