41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>ADvanced Form</title>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
|
|
</head>
|
|
<body>
|
|
<h1>ADvanced Form Page</h1>
|
|
|
|
<form method="POST" enctype="multipart/form-data" action="advanced_form_post.php">
|
|
<input name="first_name" value="Firstname" type="text" />
|
|
<input id="lastn" name="last_name" value="Lastname" type="text" />
|
|
<label for="email">
|
|
Your email:
|
|
<input type="email" id="email" name="email" value="your@email.com" />
|
|
</label>
|
|
|
|
<select name="select_number">
|
|
<option value="10">ten</option>
|
|
<option selected="selected" value="20">twenty</option>
|
|
<option value="30">thirty</option>
|
|
</select>
|
|
|
|
<label>
|
|
<span><input type="radio" name="sex" value="m" /> m</span>
|
|
<span><input type="radio" name="sex" value="w" checked="checked" /> w</span>
|
|
</label>
|
|
|
|
<input type="checkbox" name="mail_list" checked="checked" value="on"/>
|
|
<input type="checkbox" name="agreement" value="yes"/>
|
|
|
|
<textarea name="notes">original notes</textarea>
|
|
|
|
<input type="file" name="about" />
|
|
|
|
<input type="submit" name="submit" value="Register" />
|
|
<input type="submit" name="submit" value="Login" />
|
|
</form>
|
|
</body>
|
|
</html>
|