This repository has been archived by the owner on Jul 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
admin.html
62 lines (54 loc) · 1.84 KB
/
admin.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Form Admin - SpiffForm Demo</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<link rel="stylesheet" href="spiffform/res/spiffform.css" />
<link rel="stylesheet" href="default.css" />
<link rel="stylesheet" type="text/css"
href="lib/jquery-ui.css"/>
</head>
<script src="lib/jquery.min.js" type="text/javascript"></script>
<script src="lib/jquery-ui.min.js" type="text/javascript"></script>
<script src="lib/jquery.i18n.min.js" type="text/javascript"></script>
<script src="spiffform/spiffform.js" type="text/javascript"></script>
<script src="form.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
var form = attach_form($('#form'));
form.set_buttons($(''));
});
</script>
<body>
<div id="header"><h1>Form Admin - SpiffForm Demo</h1></div>
<div id="wrap">
<div id="center">
<h1 style="color: green;">Your form has been saved and can now be shared or added to your website.</h1>
<div id="form">
</div>
</div>
<div id="sidebar">
<h3>Links to this form</h3>
<ul class="ui-elements">
<li>Direct link:<input type="text" value="https://foo"/></li>
<li>Admin link:<input type="text" value="https://foo/admin"/></li>
<li>Embed:<input type="text" value='<IFRAME src="iframe-embed_start.htm" width="256" height="256">>'/></li>
</ul>
<h3>Share</h3>
<ul class="ui-elements">
<li>Facebook</li>
<li>Twitter</li>
<li>Google+</li>
<li>Email</li>
</ul>
<h3>Other Options</h3>
<ul class="ui-elements">
<li>Create a similar form</li>
<li>Print</li>
<li>Delete this form</li>
</ul>
</div>
</div>
</body>
</html>