openstamanager/modules/contratti/add.php

26 lines
798 B
PHP
Raw Normal View History

<?php
2018-02-18 19:53:23 +01:00
include_once __DIR__.'/../../core.php';
2018-02-23 16:04:50 +01:00
?><form action="" method="post" id="add-form">
<input type="hidden" name="op" value="add">
<input type="hidden" name="backto" value="record-edit">
<div class="row">
<div class="col-md-6">
2018-02-18 19:53:23 +01:00
{[ "type": "text", "label": "<?php echo tr('Nome'); ?>", "name": "nome", "required": 1, "value": "" ]}
</div>
<div class="col-md-6">
2018-06-23 18:35:08 +02:00
{[ "type": "select", "label": "<?php echo tr('Cliente'); ?>", "name": "idanagrafica", "required": 1, "value": "<?php echo $user['idanagrafica']; ?>", "ajax-source": "clienti" ]}
</div>
</div>
<!-- PULSANTI -->
<div class="row">
<div class="col-md-12 text-right">
2018-02-18 19:53:23 +01:00
<button type="submit" class="btn btn-primary"><i class="fa fa-plus"></i> <?php echo tr('Aggiungi'); ?></button>
</div>
</div>
</form>