adrema-form/index.html

26 lines
1.2 KiB
HTML
Raw Normal View History

2023-12-24 02:24:48 +01:00
<!DOCTYPE html>
<html lang="en">
<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: yellow; --secondary: green; --font: #ff6600; --circle: #111111"
value='{"sections": [
2023-12-24 03:56:43 +01:00
{"name": "Personal", "intro": "Jaöaöd", "fields": [
2023-12-24 22:41:19 +01:00
{"name": "Vorname", "type": "text", "columns": {"mobile": 2, "tablet": 3, "desktop": 6}, "default": "", "required": true},
{"name": "Geschlecht", "type": "select", "columns": {"mobile": 2, "tablet": 3, "desktop": 6}, "default": null, "required": true, "options": ["A","Bb","Cc"]},
{"name": "Nachname", "type": "text", "columns": {"mobile": 2, "tablet": 3, "desktop": 6}, "default": "", "required": true}
2023-12-24 03:56:43 +01:00
]},
{"name": "Veranstaltung", "intro": "Jaöaöd", "fields": [
]},
{"name": "Abschicken", "intro": "Jaöaöd", "fields": [
]}
2023-12-24 02:24:48 +01:00
]}'
></event-form>
<script type="module" src="src/main.js"></script>
</body>
</html>