mirror of
https://github.com/tavo-wasd-gh/conex-builder.git
synced 2025-06-07 04:03:29 -06:00
36 lines
1.6 KiB
HTML
36 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<title>Creador CONEX.one</title>
|
|
<link rel="icon" type="image/svg+xml" href="/static/svg/favicon.svg">
|
|
</head>
|
|
<h1>PayPal SDK & API Integration</h1>
|
|
<div id="editorjs"></div>
|
|
<div id="paypal-button-container"></div>
|
|
<p id="result-message"></p>
|
|
<script src="https://sandbox.paypal.com/sdk/js?client-id=AcCW43LI1S6lLQgtLkF4V8UOPfmXcqXQ8xfEl41hRuMxSskR2jkWNwQN6Ab1WK7E2E52GNaoYBHqgIKd&components=buttons&enable-funding=card&disable-funding=paylater,venmo"></script>
|
|
<!-- EDITORJS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/@editorjs/header@latest"></script><!-- Header -->
|
|
<script src="https://cdn.jsdelivr.net/npm/@editorjs/simple-image@latest"></script><!-- Image -->
|
|
<script src="https://cdn.jsdelivr.net/npm/@editorjs/list@latest"></script><!-- List -->
|
|
<script src="https://cdn.jsdelivr.net/npm/@editorjs/quote@latest"></script><!-- Quote -->
|
|
<script src="https://cdn.jsdelivr.net/npm/@editorjs/code@latest"></script><!-- Code -->
|
|
<script src="https://cdn.jsdelivr.net/npm/@editorjs/embed@latest"></script><!-- Embed -->
|
|
<script src="https://cdn.jsdelivr.net/npm/@editorjs/table@latest"></script><!-- Table -->
|
|
<script src="https://cdn.jsdelivr.net/npm/@editorjs/link@latest"></script><!-- Link -->
|
|
<!-- Load Editor.js's Core -->
|
|
<script src="https://cdn.jsdelivr.net/npm/@editorjs/editorjs@latest"></script>
|
|
<!-- EDITORJS -->
|
|
<script src="/app.js"></script>
|
|
<!-- <script src="/static/js/config.editor.js"></script> -->
|
|
<script>
|
|
// Initialize Editor.js
|
|
const editor = new EditorJS({
|
|
holder: 'editorjs',
|
|
tools: {
|
|
header: {
|
|
class: Header,
|
|
inlineToolbar: true
|
|
},
|
|
}
|
|
});
|
|
</script>
|