mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-05 02:58:36 -06:00
24 lines
650 B
HTML
24 lines
650 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>FormBricks Integration Test</title>
|
|
<script src="path-to-formbricks.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>This is A TEST</h1>
|
|
|
|
<!-- Load formbricks-js package -->
|
|
<script src="../dist/index.umd.js"></script>
|
|
<script type="text/javascript">
|
|
// Wait for the DOM to be fully loaded before initializing FormBricks
|
|
window.formbricks.init({
|
|
environmentId: "clj0zabr40009ma0hs7bb4cq9",
|
|
apiHost: "https://app.formbricks.com",
|
|
debug: true
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|