Files
EasySoft-ZenTaoPMS/module/sso/view/create.html.php
T
Catouse ad3a1c29b8 * ajusted views.
* changed css names.
2014-03-27 14:40:55 +08:00

29 lines
1.3 KiB
PHP

<?php include '../../common/view/header.html.php';?>
<form class='form-condensed' method='post' target='hiddenwin' id='dataform'>
<table class='table table-form'>
<caption><?php echo $lang->sso->create;?></caption>
<tr>
<th><?php echo $lang->sso->title;?></th>
<td><?php echo html::input('title', '', "class='form-control' placeholder='{$lang->sso->note->title}'");?></td>
</tr>
<tr>
<th><?php echo $lang->sso->code;?></th>
<td><?php echo html::input('code', '', "class='form-control' placeholder='{$lang->sso->note->code}'");?></td>
</tr>
<tr>
<th><?php echo $lang->sso->key;?></th>
<td>
<?php echo html::input('key', $key, "class='form-control' readonly='readonly'");?>
<?php echo html::a('javascript:void(0)', $lang->sso->createKey, '', 'onclick="createKey()"')?>
</td>
</tr>
<tr>
<th><?php echo $lang->sso->ip;?></th>
<td><?php echo html::input('ip', '', "class='text-5' placeholder='{$lang->sso->note->ip}'");?></td>
</tr>
<tr><td></td><td colspan='2' class='text-left'><?php echo html::submitButton() . html::backButton();?></td></tr>
</table>
</form>
<div class="instruction"><?php echo $lang->sso->instruction;?></div>
<?php include '../../common/view/footer.html.php';?>