-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms-part1.php
More file actions
executable file
·33 lines (28 loc) · 876 Bytes
/
Copy pathforms-part1.php
File metadata and controls
executable file
·33 lines (28 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<title>Pinehead.tv Forms Part 1</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.css" />
<script src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Pinehead</h1>
</div>
<!-- /header -->
<div data-role="content">
<form id="myForm" method="post" action="result.php" data-transition="pop">
<fieldset>
<div data-role="fieldcontain">
<label for="firstName">First Name</label>
<input type="text" name="firstName" />
<input type="submit" value="Show my first name" />
</div>
</fieldset>
</div>
</form>
</div><!-- /page -->
</body>
</html>