adrema-form/index.html

25 lines
966 B
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": [
{"name": "Vorname", "columns": {"mobile": 2, "tablet": 3, "desktop": 6}, "required": true},
{"name": "Nachname", "columns": {"mobile": 2, "tablet": 3, "desktop": 6}, "required": true}
]},
{"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>