File: /www/wwwroot/oa.sanjiangapp.com/app/crm/address/view/create.html.php
<?php
/**
* The view file of create function of address module of ZDOO.
*
* @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.html)
* @author Yidong Wang <yidong@cnezsoft.com>
* @package address
* @version $Id$
* @link http://www.zdoo.com
*/
?>
<?php include '../../../sys/common/view/header.modal.html.php';?>
<form id='addressForm' method='post' action='<?php echo inlink('create', "objectType=$objectType&objectID=$objectID")?>'>
<table class='table table-form'>
<tr>
<th class='w-60px'><?php echo $lang->address->title;?></th>
<td><?php echo html::input('title', '', "class='form-control'")?></td>
</tr>
<tr>
<th><?php echo $lang->address->area;?></th>
<td><?php echo html::select('area', $areas, '', "class='form-control chosen'")?></td>
</tr>
<tr>
<th><?php echo $lang->address->location;?></th>
<td><?php echo html::input('location', '', "class='form-control'")?></td>
</tr>
<tr>
<th></th>
<td class='form-actions'><?php echo html::submitButton() . html::commonButton($lang->goback, 'btn reloadModal');?></td>
</tr>
</table>
</form>
<?php include '../../../sys/common/view/footer.modal.html.php';?>