mirror of
https://github.com/lammertb/libhttp.git
synced 2025-12-22 04:02:04 +03:00
The Lua code example is from the Civetweb discussion group: https://groups.google.com/forum/#!topic/civetweb/m9ojynOyzU4 This is also an example that might answer a question posted as an issue in Github: https://github.com/bel2125/civetweb/issues/70 Question: how to get header, parse POSTed content in Lua? (issue #70)
84 lines
2.9 KiB
HTML
84 lines
2.9 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<title>Example page for HTML form handling</title>
|
|
</head>
|
|
|
|
<body>
|
|
<form action="/handle_form_data.lua" method="POST" enctype="multipart/form-data">
|
|
See <a href="http://www.w3schools.com/html/html_form_input_types.asp">HTML form tutorial</a>.<br />
|
|
|
|
<fieldset>
|
|
<legend>Text inputs:</legend>
|
|
A text: <input type="text" name="textin"><br />
|
|
A password: <input type="password" name="passwordin"><br />
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>Radio set 1:</legend>
|
|
<input type="radio" name="radio1" value="val1" checked>val1<br />
|
|
<input type="radio" name="radio1" value="val2">val2<br />
|
|
<input type="radio" name="radio1" value="val3">val3<br />
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>Radio set 2:</legend>
|
|
<input type="radio" name="radio2" value="val1" checked>val1<br />
|
|
<input type="radio" name="radio2" value="val2">val2<br />
|
|
<input type="radio" name="radio2" value="val3">val3<br />
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>Checkboxes:</legend>
|
|
<input type="checkbox" name="check1" value="val1" checked>val1<br />
|
|
<input type="checkbox" name="check2" value="val2">val2<br />
|
|
<input type="checkbox" name="check3" value="val3">val3<br />
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>HTML5 inputs:</legend>
|
|
A number: <input type="number" name="numberin" min="1" max="5"><br />
|
|
A date: <input type="date" name="datein"><br />
|
|
A color: <input type="color" name="colorin"><br />
|
|
A range: <input type="range" name="rangein" min="1" max="5"><br />
|
|
A month: <input type="month" name="monthin"><br />
|
|
A week: <input type="week" name="weekin"><br />
|
|
A time: <input type="time" name="timein"><br />
|
|
A datetime: <input type="datetime" name="datetimen"><br />
|
|
A datetime-local: <input type="datetime-local" name="datetimelocalin"><br />
|
|
An email: <input type="email" name="emailin"><br />
|
|
A search: <input type="search" name="searchin"><br />
|
|
A tel: <input type="tel" name="telin"><br />
|
|
An url: <input type="url" name="urlin"><br />
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>Files:</legend>
|
|
A file: <input type="file" name="filein"><br />
|
|
Multiple files: <input type="file" name="filesin" multiple><br>
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>Dropdown:</legend>
|
|
<select name="selectin">
|
|
<option value="opt1">opt1</option>
|
|
<option value="opt2">opt2</option>
|
|
<option value="opt3">opt3</option>
|
|
</select>
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>Text area:</legend>
|
|
<textarea name="message" rows="10" cols="30">Text area default text.</textarea>
|
|
</fieldset>
|
|
|
|
<input type="submit" value="Submit">
|
|
|
|
</form>
|
|
</body>
|
|
|
|
</html>
|