-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
executable file
·66 lines (54 loc) · 1.7 KB
/
popup.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
66
<!DOCTYPE html>
<html lang="en">
<head>
<link href="/css/bootstrap.css" rel="stylesheet">
<link href="/css/bootstrap-responsive.css" rel="stylesheet">
<link href="/css/lordpress.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div id="popup_title">Post to
<strong id="destination"></strong>
</div>
<span class="label label-info">Title</span>
<div>
<input id="post_title" type="text">
</div>
<span class="label label-success">Media</span>
<div>
<div id="post_image"></div>
<div id="post_media"></div>
</div>
<div id="description_label">
<span class="label label-warning">Description</span>
</div>
<div id="source_btn">
<button class="btn btn-mini" type="button">Insert Source</button>
</div>
<div>
<textarea id="post_content" rows="3"></textarea>
</div>
<span class="label label-important">Category</span>
<div>
<select id="post_category">
</select>
</div>
<span class="label label-inverse">Tags</span>
<div>
<input id="post_tags" type="text">
</div>
<span class="label label-inverse">Source</span>
<div>
<input id="post_source" type="text" disabled>
</div>
<div id="post_button">
<button id="btn_post" class="btn btn-large btn-primary">
<i id="btn_post_icon" class="icon-plus icon-white"></i> Post your article !</button>
</div>
</div>
</body>
<script type="text/javascript" src="/lib/jquery-2.0.1.min.js"></script>
<script type="text/javascript" src="/lib/jquery.xmlrpc.min.js"></script>
<script type="text/javascript" src="/lib/jquery-url.js"></script>
<script type="text/javascript" src="/js/popup.js"></script>
</html>