-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex-dev.html
124 lines (110 loc) · 4.06 KB
/
index-dev.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bulma Form Builder</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link href="assets/css/lib/bulma.css" rel="stylesheet">
<link href="assets/css/custom.css" rel="stylesheet">
<link href="https://cdn.rawgit.com/Wikiki/bulma-quickview/01d91b043f530bc20ba60fb7be3c6560412d919e/dist/bulma-quickview.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body class="has-navbar-fixed-top">
<nav class="navbar is-fixed-top is-light" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="https://bulma.io">
<strong>Bulma</strong>
</a>
<a class="navbar-item" href="https://wikiki.github.io/">
Bulma Extensions
</a>
<a class="navbar-item is-active" href="https://jesobreira.github.io/Bulma-Form-Builder">
Bulma Form Builder
</a>
</div>
<div class="navbar-end">
<a class="navbar-item" href="https://github.com/jesobreira/Bulma-Form-Builder/" target="_blank">
<span class="icon" style="color: #333;">
<i class="fa fa-lg fa-github"></i>
</span>
Fork Me
</a>
</div>
</nav>
<section class="hero is-link">
<div class="hero-body">
<div class="container">
<h1 class="title">
Bulma Form Builder
</h1>
<h2 class="subtitle">
Drag 'n drop form builder for <a href="https://bulma.io">Bulma</a>
</h2>
</div>
</div>
</section>
<div class="container">
<div class="columns">
<!-- Building Form. -->
<div class="column">
<div class="clearfix">
<h2>Your Form</h2>
<hr>
<div id="build">
<form id="target" class="form-horizontal">
</form>
</div>
</div>
</div>
<!-- / Building Form. -->
<!-- Components -->
<div class="column">
<h2>Drag & Drop components</h2>
<hr>
<div class="tabbable">
<div class="tabs is-boxed">
<ul id="formtabs">
<!-- Tab nav -->
</ul>
</div>
<form class="form-horizontal" id="components">
<fieldset>
<div class="tab-content">
<!-- Tabs of snippets go here -->
</div>
</fieldset>
</form>
</div>
</div>
<!-- / Components -->
</div>
<div class="columns clearfix">
<div class="column">
<hr>
By Jefrey Santos (<a href="https://github.com/jesobreira" target="_blank">@jesobreira)</a>, based on the work by Adam Moore (<a href="http://twitter.com/minikomi" target="_blank">@minikomi</a>).
Source on <a href="https://github.com/jesobreira/Bulma-Form-Builder" target="_blank">Github</a>.<br>
<small>This website is not affiliated to Bulma, Bulma-Extensions or Bootstrap.</small>
</div>
</div>
</div> <!-- /container -->
<div id="quickview" class="quickview">
<header class="quickview-header">
<p class="title">Quickview title</p>
<span class="delete" data-dismiss="quickview"></span>
</header>
<div class="quickview-body">
<div class="quickview-block" id="popover">
</div>
</div>
<footer class="quickview-footer">
</footer>
</div>
<script src="https://cdn.rawgit.com/Wikiki/bulma-quickview/01d91b043f530bc20ba60fb7be3c6560412d919e/dist/bulma-quickview.min.js"></script>
<script data-main="assets/js/main.js" src="assets/js/lib/require.js" ></script>
</body>
</html>