You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.9 KiB
60 lines
1.9 KiB
1 year ago
|
<form action="echo.php" class="repeater" enctype="multipart/form-data">
|
||
|
<div data-repeater-list="group-a">
|
||
|
<div data-repeater-item>
|
||
|
<input name="untyped-input" value="A"/>
|
||
|
|
||
|
<input type="text" name="text-input" value="A"/>
|
||
|
|
||
|
<input type="date" name="date-input"/>
|
||
|
|
||
|
<textarea name="textarea-input">A</textarea>
|
||
|
|
||
|
<input type="radio" name="radio-input" value="A" checked/>
|
||
|
<input type="radio" name="radio-input" value="B"/>
|
||
|
|
||
|
<input type="checkbox" name="checkbox-input" value="A" checked/>
|
||
|
<input type="checkbox" name="checkbox-input" value="B"/>
|
||
|
|
||
|
<select name="select-input">
|
||
|
<option value="A" selected>A</option>
|
||
|
<option value="B">B</option>
|
||
|
</select>
|
||
|
|
||
|
<select name="multiple-select-input" multiple>
|
||
|
<option value="A" selected>A</option>
|
||
|
<option value="B" selected>B</option>
|
||
|
</select>
|
||
|
|
||
|
<input data-repeater-delete type="button" value="Delete"/>
|
||
|
</div>
|
||
|
<div data-repeater-item>
|
||
|
<input name="untyped-input" value="A"/>
|
||
|
|
||
|
<input type="text" name="text-input" value="B"/>
|
||
|
|
||
|
<input type="date" name="date-input"/>
|
||
|
|
||
|
<textarea name="textarea-input">B</textarea>
|
||
|
|
||
|
<input type="radio" name="radio-input" value="A" />
|
||
|
<input type="radio" name="radio-input" value="B" checked/>
|
||
|
|
||
|
<input type="checkbox" name="checkbox-input" value="A"/>
|
||
|
<input type="checkbox" name="checkbox-input" value="B" checked/>
|
||
|
|
||
|
<select name="select-input">
|
||
|
<option value="A">A</option>
|
||
|
<option value="B" selected>B</option>
|
||
|
</select>
|
||
|
|
||
|
<select name="multiple-select-input" multiple>
|
||
|
<option value="A" selected>A</option>
|
||
|
<option value="B" selected>B</option>
|
||
|
</select>
|
||
|
|
||
|
<input data-repeater-delete type="button" value="Delete"/>
|
||
|
</div>
|
||
|
</div>
|
||
|
<input data-repeater-create type="button" value="Add"/>
|
||
|
</form>
|