Blame view
sources/apps/calendar/templates/part.newevent.php
474 Bytes
|
03e52840d
|
1 2 3 4 5 6 7 8 9 |
<div id="event" title="<?php p($l->t("Create a new event"));?>">
<form id="event_form">
<?php print_unescaped($this->inc("part.eventform")); ?>
<div style="width: 100%;text-align: center;color: #FF1D1D;" id="errorbox"></div>
<div id="actions">
<input type="button" id="submitNewEvent" data-link="<?php print_unescaped(OCP\Util::linkTo('calendar', 'ajax/event/new.php')); ?>" class="submit actionsfloatleft" value="<?php p($l->t("Submit"));?>">
</div>
</form>
</div>
|