-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathnew_person.html
More file actions
64 lines (44 loc) · 2.01 KB
/
new_person.html
File metadata and controls
64 lines (44 loc) · 2.01 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<title>My Web App - New Person</title>
<meta charset="utf-8">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable = no, maximum-scale = 1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta http-equiv="cleartype" content="on">
<link rel="stylesheet" href="css/jqmtegan.min.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc3/jquery.mobile.structure-1.0rc3.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0rc3/jquery.mobile-1.0rc3.min.js"></script>
<script src="js/html5sql.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<div data-role="page" class="type-interior" data-theme="a" id="new_person">
<div data-role="header" data-theme="a">
<h1>New Person</h1>
<a href="index.html" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a>
</div>
<div data-role="content">
<form action="#" method="get">
<label for="first_name">First Name:</label>
<input type="text" name="first_name" id="first_name" value="" />
<label for="last_name">Last Name:</label>
<input type="text" name="last_name" id="last_name" value="" />
<label for="age">Age:</label>
<input type="text" pattern="[0-9]*" name="age" id="age" value="" />
<label for="money">Money</label>
<input type="text" pattern="[0-9]*" name="money" id="money" value="" />
<br><br>
<fieldset class="ui-grid-a">
<div class="ui-block-a"><button type="submit" data-theme="d">Cancel</button></div>
<div class="ui-block-b"><button type="submit" data-theme="a" id="save_person">Save</button></div>
</fieldset>
</form>
</div>
</div>
</body>
</html>