* changed css names to compatible with zui.
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
<table class='table-1 fixed colored tablesorter datatable'>
|
||||
<caption class='caption-tl pb-10px'>
|
||||
<div class='f-left'><?php echo $lang->sso->browse;?></div>
|
||||
<div class='f-right'>
|
||||
<div class='text-right'>
|
||||
<?php common::printIcon('sso', 'create');?>
|
||||
</div>
|
||||
</caption>
|
||||
|
||||
@@ -4,16 +4,16 @@
|
||||
<caption><?php echo $lang->sso->create;?></caption>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->sso->title;?></th>
|
||||
<td><?php echo html::input('title', '', "class='text-3' placeholder='{$lang->sso->note->title}'");?></td>
|
||||
<td><?php echo html::input('title', '', "class='form-control' placeholder='{$lang->sso->note->title}'");?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->sso->code;?></th>
|
||||
<td><?php echo html::input('code', '', "class='text-3' placeholder='{$lang->sso->note->code}'");?></td>
|
||||
<td><?php echo html::input('code', '', "class='form-control' placeholder='{$lang->sso->note->code}'");?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->sso->key;?></th>
|
||||
<td>
|
||||
<?php echo html::input('key', $key, "class='text-3' readonly='readonly'");?>
|
||||
<?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>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<caption><?php echo $lang->sso->edit;?></caption>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->sso->title;?></th>
|
||||
<td><?php echo html::input('title', $auth->title, "class='text-3'");?></td>
|
||||
<td><?php echo html::input('title', $auth->title, "class='form-control'");?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->sso->code;?></th>
|
||||
@@ -13,7 +13,7 @@
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->sso->key;?></th>
|
||||
<td>
|
||||
<?php echo html::input('key', $auth->key, "class='text-3' readonly='readonly'");?>
|
||||
<?php echo html::input('key', $auth->key, "class='form-control' readonly='readonly'");?>
|
||||
<?php echo html::a('javascript:void(0)', $lang->sso->createKey, '', 'onclick="createKey()"')?>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user