update index page
This commit is contained in:
parent
4edc8ee3d2
commit
b40c970b6f
67
index.html
67
index.html
|
|
@ -4,6 +4,8 @@
|
|||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Vite + Vue</title>
|
||||
|
||||
<!-- base url for the adrema API. Normally this is something like /plugins/api/silva/adrema, if this is running on an external website -->
|
||||
<meta name="adrema_base_url" content="/" />
|
||||
</head>
|
||||
<body>
|
||||
|
|
@ -67,17 +69,78 @@
|
|||
}
|
||||
],
|
||||
"intro": null
|
||||
},
|
||||
{
|
||||
"name": "sdfs",
|
||||
"fields": [
|
||||
{
|
||||
"required": true,
|
||||
"key": "vorname",
|
||||
"name": "Vorname",
|
||||
"nami_type": null,
|
||||
"columns": {
|
||||
"mobile": 2,
|
||||
"tablet": 4,
|
||||
"desktop": 6
|
||||
},
|
||||
"for_members": true,
|
||||
"special_type": null,
|
||||
"hint": null,
|
||||
"intro": null,
|
||||
"value": null,
|
||||
"type": "TextField"
|
||||
},
|
||||
{
|
||||
"required": true,
|
||||
"key": "nachname",
|
||||
"name": "Nachname",
|
||||
"nami_type": null,
|
||||
"columns": {
|
||||
"mobile": 2,
|
||||
"tablet": 4,
|
||||
"desktop": 3
|
||||
},
|
||||
"for_members": true,
|
||||
"special_type": null,
|
||||
"hint": null,
|
||||
"intro": null,
|
||||
"value": null,
|
||||
"type": "TextField"
|
||||
},
|
||||
{
|
||||
"required": true,
|
||||
"key": "mail",
|
||||
"name": "Mail",
|
||||
"nami_type": null,
|
||||
"columns": {
|
||||
"mobile": 1,
|
||||
"tablet": 2,
|
||||
"desktop": 3
|
||||
},
|
||||
"for_members": true,
|
||||
"special_type": null,
|
||||
"hint": null,
|
||||
"intro": null,
|
||||
"value": null,
|
||||
"type": "EmailField"
|
||||
}
|
||||
],
|
||||
"intro": null
|
||||
}
|
||||
]
|
||||
}'
|
||||
payload='{"vorname": "Philipp", "nachname": "Lang", "mail": "a@b.de"}'
|
||||
url="http://localhost:8000"
|
||||
editable
|
||||
></event-form>
|
||||
<event-overview
|
||||
<event-index
|
||||
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>
|
||||
index-url="http://frontend.local/events"
|
||||
single-url="http://frontend.local/event/{slug}"
|
||||
register-url="http://frontend.local/event/{slug}/register"
|
||||
></event-index>
|
||||
<script type="module" src="src/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Reference in New Issue