openstamanager/modules/utenti/add.php

22 lines
573 B
PHP
Raw Normal View History

<?php
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">
2018-02-20 16:46:23 +01:00
<div class="">
2018-02-18 19:53:23 +01:00
{[ "type": "text", "label": "<?php echo tr('Nome'); ?>", "name": "nome", "required": 1, "value": "" ]}
</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>