forked from NarasimhaReddyY/react-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 721 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 721 Bytes
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
<html lang="en">
<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">
<link rel="stylesheet" type="text/css" href="dist/app.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="dist/app.js"></script>
</body>
</html>