forked from andmeek/jqm-crash-course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
second page.html
executable file
·43 lines (36 loc) · 1.21 KB
/
second page.html
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
<title>My basic jqm page 2</title>
</head>
<body>
<div data-role="page" id="home">
<div data-role="header" data-theme="b"><h1>My Leads Form</h1></div>
<div data-role="content">
<h2>Input Lead</h2>
<form>
<label for="name">Name:</label>
<input type="text" name="name" id="name" />
<label for="tel">Tel:</label>
<input type="tel" name="tel" id="tel" />
<input type="submit" name="submit" value="Add" data-inline="true" data-icon="add" />
</form>
<div data-role="collapsible" data-inset="false">
<h3>Current Leads</h3>
<p>You currently have X leads</p>
<ul data-role="listview" data-inset="true">
<li><a href="#home">Everyone</a></li>
<li>In</li>
<li>This</li>
<li><a href="#home">Room</a></li>
</ul>
</div>
</div>
</div>
<!--- who knows what here.... -->
</body>
</html>