21 lines
672 B
HTML
21 lines
672 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||
|
<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": [
|
||
|
{"name": "Personal"},
|
||
|
{"name": "Veranstaltung"},
|
||
|
{"name": "Abschicken"}
|
||
|
]}'
|
||
|
></event-form>
|
||
|
<script type="module" src="src/main.js"></script>
|
||
|
</body>
|
||
|
</html>
|