openstamanager/modules/categorie_documenti/add.php

25 lines
612 B
PHP
Raw Normal View History

2018-07-07 14:24:59 +02:00
<?php
include_once __DIR__.'/../../core.php';
?><form action="" method="post" id="add-form">
2018-04-19 15:16:58 +02:00
<input type="hidden" name="op" value="add">
<input type="hidden" name="backto" value="record-edit">
<div class="row">
2018-07-07 14:24:59 +02:00
2018-04-19 15:16:58 +02:00
<div class="col-md-12">
{[ "type": "text", "label": "<?php echo tr('Descrizione'); ?>", "name": "descrizione", "required": 1, "value": "", "extra": "" ]}
2018-04-19 15:16:58 +02:00
</div>
2018-07-07 14:24:59 +02:00
2018-04-19 15:16:58 +02:00
</div>
2018-07-07 14:24:59 +02:00
<!-- PULSANTI -->
2018-04-19 15:16:58 +02:00
<div class="row">
<div class="col-md-12 text-right">
2018-07-07 14:24:59 +02:00
<button type="submit" class="btn btn-primary"><i class="fa fa-plus"></i> <?php echo tr('Aggiungi'); ?></button>
2018-04-19 15:16:58 +02:00
</div>
</div>
</form>