/actions/src/main/webapp/WEB-INF/views/apps/new.jsp
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 8 <div class="section"> 9 10 <h4> 11 If you would like to start using the ALA/Spatial web services, 12 please register your application here 13 </h4> 14 15 <form class="emmet-form fm-v" action="#" method="post"> 16 <fieldset> 17 <div class="emmet-panel"> 18 <div class="row"> 19 <label for="name">Application name:</label> 20 <input type="text" id="name" name="name" class="required" 21 placeholder="Enter the application name"/> 22 </div> 23 24 <div class="row"> 25 <label for="email">Email:</label> 26 <input type="email" id="email" name="email" class="required" 27 placeholder="Enter an email address"/> 28 </div> 29 30 <div class="row"> 31 <label for="organisation">Organisation:</label> 32 <input type="text" id="organisation" name="organisation" class="required" 33 placeholder="Enter the organisation name"/> 34 </div> 35 36 <div class="row"> 37 <label for="description">Description:</label> 38 <textarea id="description" name="description" class="required" 39 placeholder="Enter your application description"></textarea> 40 </div> 41 42 <input type="submit" value="Register"/> 43 </div> 44 </fieldset> 45 </form> 46 47 </div> 48 49</div> 50<!--close content--> 51<%@ include file="/WEB-INF/views/common/bottom.jsp" %>