-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtopic.html
65 lines (64 loc) · 3.06 KB
/
topic.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<html>
<head>
<title>Upgrade</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/jquery.mobile-1.3.1.min.css" />
<script src="js/jquery-1.9.1.min.js"></script>
<script src="js/jquery.mobile-1.3.1.min.js"></script>
</head>
<body>
<div data-role="header" style="overflow:hidden;" data-position="fixed">
<h4 style="text-align:center;">UPGRADE</h4>
<div data-role="navbar" >
<ul>
<li><a href="cat.html" rel="external" >C</a></li>
<li><a href="cat.html" rel="external" >P</a></li>
<li><a href="cat.html" rel="external" >E</a></li>
<li><a href="profile.html" rel="external" >Me</a></li>
</ul>
</div><!-- /navbar -->
</div><!-- /footer -->
<div data-role="collapsible" data-theme="b" data-content-theme="d">
<h4>Course one</h4>
<p>we are teaching material of course one
<a href="#popupDialog" data-rel="popup" data-position-to="window" data-role="button" data-inline="true" data-transition="pop" data-theme="b">Request</a></p>
</p>
</div>
<div data-role="collapsible" data-theme="b" data-content-theme="d">
<h4>Course two</h4>
<p>we are teaching material of course two
<a href="#popupDialog" data-rel="popup" data-position-to="window" data-role="button" data-inline="true" data-transition="pop" data-theme="b">Request</a></p>
</p>
</div>
<div data-role="collapsible" data-theme="b" data-content-theme="d">
<h4>Course three</h4>
<p>we are teaching material of course three
<a href="#popupDialog" data-rel="popup" data-position-to="window" data-role="button" data-inline="true" data-transition="pop" data-theme="b">Request</a></p>
</p>
</div>
<div data-role="collapsible" data-theme="b" data-content-theme="d">
<h4>Course four</h4>
<p>we are teaching material of course four
<a href="#popupDialog" data-rel="popup" data-position-to="window" data-role="button" data-inline="true" data-transition="pop" data-theme="b">Request</a></p>
</p>
</div>
<div data-role="collapsible" data-theme="b" data-content-theme="d">
<h4>Course five</h4>
<p>we are teaching material of course five
<a href="#popupDialog" data-rel="popup" data-position-to="window" data-role="button" data-inline="true" data-transition="pop" data-theme="b">Request</a></p>
</div>
<div data-role="popup" id="popupDialog" data-overlay-theme="a" data-theme="c" data-dismissible="false" style="max-width:400px;" class="ui-corner-all">
<div data-role="header" data-theme="a" class="ui-corner-top">
<h1>Send request</h1>
</div>
<div data-role="content" data-theme="d" class="ui-corner-bottom ui-content">
<label for="text-basic">Subject:</label>
<input type="text" name="text-basic" id="text-basic" value="">
<label for="textarea">Message:</label>
<textarea cols="40" rows="8" name="textarea" id="textarea"></textarea>
<a href="#" data-role="button" data-inline="true" data-rel="back" data-theme="c">Cancel</a>
<a href="#" data-role="button" data-inline="true" data-rel="back" data-transition="flow" data-theme="b">Submit</a>
</div>
</div>
</body>
</html>