forked from blackjk3/react-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 779 Bytes
/
index.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
<html>
<head>
<title>React Form Builder Example</title>
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<style>
body {
font-size: 14px;
font-weight: 300;
color: #404d5b;
width: 900px;
margin: 0 auto;
}
.modal { background: rgba(0,0,0, 0.3);}
.modal-content { padding: 30px; }
</style>
</head>
<body>
<script>
var FORM_ACTION = "/testing";
var FORM_METHOD = "POST";
</script>
<div id="demo-bar"></div>
<div id="form-builder"></div>
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="http://localhost:8080/webpack-dev-server.js"></script>
<script src="app.js"></script>
</body>
</html>