tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

formPage.html (4305B)


      1 <html>
      2 <head>
      3    <title>We Leave From Here</title>
      4 
      5    <script type="text/javascript">
      6        function changePage() {
      7            let newLocation = '/common/page/3';
      8            window.location = newLocation;
      9        }
     10    </script>
     11 </head>
     12 <body>
     13 There should be a form here:
     14 
     15 <form method="get" action="resultPage.html" name="login">
     16    <input type="email" id="email"/>
     17    <input type="submit" id="submitButton" value="Hello there"/>
     18 </form>
     19 
     20 <form method="get" action="resultPage.html" name="optional" style="display: block">
     21    Here's a checkbox:
     22    <input type="checkbox" id="checky" name="checky" value="furrfu"/>
     23    <input type="checkbox" id="checkedchecky" name="checkedchecky" checked="checked" />
     24    <input type="checkbox" id="disabledchecky" disabled="disabled" name="disabledchecky" />
     25    <input type="checkbox" id="randomly_disabled_checky" disabled="somerandomstring" checked="checked" name="randomlydisabledchecky" />
     26    <br/>
     27    <select name="selectomatic">
     28        <option selected="selected" id="non_multi_option" value="one">One</option>
     29        <option value="two">Two</option>
     30        <option value="four">Four</option>
     31        <option value="still learning how to count, apparently">Still learning how to count, apparently</option>
     32    </select>
     33 
     34    <select name="multi" id="multi" multiple="multiple">
     35        <option selected="selected" value="eggs">Eggs</option>
     36        <option value="ham">Ham</option>
     37        <option selected="selected" value="sausages">Sausages</option>
     38        <option value="onion gravy">Onion gravy</option>
     39    </select>
     40 
     41    <select name="no-select" disabled="disabled">
     42      <option value="foo">Foo</option>
     43    </select>
     44 
     45 	<select name="select_empty_multiple" multiple>
     46 		<option id="multi_1" value="select_1">select_1</option>
     47 		<option id="multi_2" value="select_2">select_2</option>
     48 		<option id="multi_3" value="select_3">select_3</option>
     49 		<option id="multi_4" value="select_4">select_4</option>
     50 	</select>
     51 
     52 	<select name="multi_true" multiple="true">
     53 		<option id="multi_true_1" value="select_1">select_1</option>
     54 		<option id="multi_true_2" value="select_2">select_2</option>
     55 	</select>
     56 
     57 	<select name="multi_false" multiple="false">
     58 		<option id="multi_false_1" value="select_1">select_1</option>
     59 		<option id="multi_false_2" value="select_2">select_2</option>
     60 	</select>
     61 
     62    <select id="invisi_select" style="opacity:0;">
     63      <option selected value="apples">Apples</option>
     64      <option value="oranges">Oranges</option>
     65    </select>
     66 
     67    <select name="select-default">
     68        <option>One</option>
     69        <option>Two</option>
     70        <option>Four</option>
     71        <option>Still learning how to count, apparently</option>
     72    </select>
     73 
     74    <select name="select_with_spaces">
     75        <option>One</option>
     76        <option>  Two  </option>
     77        <option>
     78          Four
     79        </option>
     80        <option>
     81          Still learning   how to count,
     82          apparently
     83        </option>
     84    </select>
     85 
     86    <select>
     87    	<option id="blankOption"></option>
     88    	<option id="optionEmptyValueSet" value="">nothing</option>
     89    </select>
     90 
     91    <br/>
     92 
     93    <input type="radio" id="cheese" name="snack" value="cheese"/>Cheese<br/>
     94    <input type="radio" id="peas" name="snack" value="peas"/>Peas<br/>
     95    <input type="radio" id="cheese_and_peas" name="snack" value="cheese and peas" checked/>Cheese and peas<br/>
     96    <input type="radio" id="nothing" name="snack" value="nowt" disabled="disabled"/>Not a sausage<br/>
     97    <input type="radio" id="randomly_disabled_nothing" name="snack" value="funny nowt" disabled="somedisablingstring"/>Not another sausage
     98 
     99    <input type="hidden" name="hidden" value="fromage" />
    100 
    101    <p id="cheeseLiker">I like cheese</p>
    102    <input type="submit" value="Click!"/>
    103 
    104    <input type="radio" id="lone_disabled_selected_radio" name="not_a_snack" value="cumberland" checked="checked" disabled="disabled" />Cumberland sausage
    105 </form>
    106 
    107 <form method="get" action="formPage.html">
    108  <p>
    109    <label for="checkbox-with-label" id="label-for-checkbox-with-label">Label</label><input type="checkbox" id="checkbox-with-label" />
    110  </p>
    111 </form>
    112 <input id="vsearchGadget" name="SearchableText" type="text" size="18" value="" title="Hvad søger du?" accesskey="4" class="inputLabel" />
    113 </body>
    114 </html>