33 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
| <!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: 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>
 | |
| </html>
 |