vorlage für create und update für event gemacht.
This commit is contained in:
parent
4f0f1e5f6d
commit
a9944259b6
15
Views/Event/showCreateForwarding.phtml
Normal file
15
Views/Event/showCreateForwarding.phtml
Normal file
@ -0,0 +1,15 @@
|
||||
<div class="inhalt">
|
||||
<div class="create-forwarding">
|
||||
<h2>Erstellen...</h2>
|
||||
<p>Sie werden in wenigen Sekunden zu der Erstell Seite weitergeleitet...</p>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
setTimeout(function() {
|
||||
window.location.href = "?controller=Event&do=showCreateEvent";
|
||||
}, 2000); // 2 Sekunden warten
|
||||
</script>
|
||||
<noscript>
|
||||
<meta http-equiv="refresh" content="2;url=?controller=Event&do=showCreateEvent">
|
||||
</noscript>
|
||||
|
15
Views/Event/showUpdateForwarding.phtml
Normal file
15
Views/Event/showUpdateForwarding.phtml
Normal file
@ -0,0 +1,15 @@
|
||||
<div class="inhalt">
|
||||
<div class="update-forwarding">
|
||||
<h2>Editieren...</h2>
|
||||
<p>Sie werden in wenigen Sekunden zur Edit Seite weitergeleitet...</p>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
setTimeout(function() {
|
||||
window.location.href = "?controller=Event&do=showUpdateEvent";
|
||||
}, 2000); // 2 Sekunden warten
|
||||
</script>
|
||||
<noscript>
|
||||
<meta http-equiv="refresh" content="2;url=?controller=Event&do=showUpdateEvent">
|
||||
</noscript>
|
||||
|
Loading…
x
Reference in New Issue
Block a user