adrema-form/index.html

33 lines
1.4 KiB
HTML
Raw Normal View History

2023-12-24 02:24:48 +01:00
<!DOCTYPE html>
<html lang="en">
2024-01-30 01:49:44 +01:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue</title>
</head>
<body style="padding: 50px">
<event-form
style="
--primary: hsl(181, 75%, 26%);
--secondary: hsl(181, 75%, 35%);
--font: hsl(181, 84%, 78%);
--circle: hsl(181, 86%, 16%);
"
value='{"sections":[{"name":"ff","intro":"ff","fields":[{"name":"sdsdsd","type":"CheckboxField","columns":{"mobile":2,"tablet":4,"desktop":6},"default":false,"required":true,"description":"sds","key":"sdsdsd"},{"name":"Bezirk","type":"GroupField","columns":{"mobile":2,"tablet":4,"desktop":6},"default":"","required":true,"parent_field":null,"parent_group":120,"key":"bezirk"},{"name":"Stamm","type":"GroupField","columns":{"mobile":2,"tablet":4,"desktop":6},"default":"","required":true,"parent_field":"bezirk","parent_group":null,"key":"stamm"}]}]}'
url="http://localhost:8000"
editable
></event-form>
<event-overview
style="
--primary: hsl(181, 75%, 26%);
--secondary: hsl(181, 75%, 35%);
--font: hsl(181, 84%, 78%);
--circle: hsl(181, 86%, 16%);
"
url-pattern="/anmeldung/{slug}"
url="http://localhost:8000/api/form"
></event-overview>
<script type="module" src="src/main.js"></script>
</body>
2023-12-24 02:24:48 +01:00
</html>