ctf-server

old server for hosting capture-the-flag

git clone https://9o.is/git/ctf-server.git

wizard-all.html

(1470B)


      1 <div class="form-horizontal">
      2   <wizard:screen_info><div>Page <wizard:screen_number/> of <wizard:total_screens/></div></wizard:screen_info>
      3   <wizard:wizard_top> <div> <wizard:bind/> </div> </wizard:wizard_top>
      4   <wizard:screen_top> <div> <wizard:bind/> </div> </wizard:screen_top>
      5   <!-- <wizard:errors> <div> <ul> <wizard:item> <li> <wizard:bind/> </li> </wizard:item> </ul> </div> </wizard:errors> -->
      6   <fieldset>
      7     <wizard:fields>
      8       <div class="control-group" lift:bind="wizard:line">
      9         <wizard:label><label class="control-label" wizard:for=""><wizard:bind></wizard:bind></label></wizard:label>
     10         <div class="controls">
     11           <wizard:form></wizard:form>
     12           <wizard:help><span class="help-inline"><wizard:bind></wizard:bind></span></wizard:help>
     13           <span class="alert-block">
     14             <wizard:field_errors>
     15               <ul class="unstyled">
     16                 <wizard:error>
     17                   <li class="error"><wizard:bind></wizard:bind></li>
     18                 </wizard:error>
     19               </ul>
     20             </wizard:field_errors>
     21           </span>
     22         </div>
     23       </div>
     24     </wizard:fields>
     25   </fieldset>
     26   <div class="form-actions">
     27     <wizard:prev></wizard:prev>
     28     <wizard:next></wizard:next>
     29     <wizard:cancel></wizard:cancel>
     30   </div>
     31   <wizard:screen_bottom><div><wizard:bind></wizard:bind></div></wizard:screen_bottom>
     32   <wizard:wizard_bottom><div><wizard:bind></wizard:bind></div></wizard:wizard_bottom>
     33 </div>