forked from blackjk3/react-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 354
/
index.html
40 lines (35 loc) · 961 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
31
32
33
34
35
36
37
38
39
40
<html lang="en">
<head>
<title>React Form Builder Example</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.0/css/all.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="dist/app.css">
<style>
body {
font-size: 14px;
font-weight: 300;
color: #404d5b;
width: 1200px;
margin: 0 auto;
}
.modal {
background: rgba(0, 0, 0, 0.3);
}
.modal-content {
padding: 30px;
max-height: 800px;
overflow-y: auto
}
</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>