25 lines
1.4 KiB
Plaintext
25 lines
1.4 KiB
Plaintext
<style>
|
|
input[type=text] {
|
|
padding: 2px;
|
|
border: 1px solid #ccc;
|
|
-webkit-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
input[type=text]:focus {
|
|
border-color: #333;
|
|
}
|
|
</style>
|
|
<div><strong>패스워드용 난수 : </strong><input type=text style="width:290px;" value="<?php echo \htmlentities($helper->getRandomString()??'', ENT_QUOTES, 'UTF-8', false); ?>"></div>
|
|
<?php $__currentLoopData = $entities; $this->addLoop($__currentLoopData);$this->getFirstLoop();
|
|
foreach($__currentLoopData as $entity): $loop = $this->incrementLoopIndices(); ?>
|
|
<?php $service = $services[$entity->getServiceCode()] ?>
|
|
<div>
|
|
<i class="fa fa-info-circle fa-fw"></i>
|
|
<a href="/serviceDetailSolo.sev?client_code=<?php echo \htmlentities($service->getClientCode()??'', ENT_QUOTES, 'UTF-8', false); ?>&service_code=<?php echo \htmlentities($entity->getServiceCode()??'', ENT_QUOTES, 'UTF-8', false); ?>" style="text-decoration: none;color:gray;font-size:10pt;line-height:1.6em;">
|
|
[<?php echo \htmlentities($clients[$service->getClientCode()]->getTitle()??'', ENT_QUOTES, 'UTF-8', false); ?>]<?php echo \htmlentities($entity->getServiceCode()??'', ENT_QUOTES, 'UTF-8', false); ?>/<?php echo \htmlentities($entity->behavior??'', ENT_QUOTES, 'UTF-8', false); ?>
|
|
|
|
</a>
|
|
<span class="pull-right text-muted small"><em><?php echo \htmlentities($entity->note??'', ENT_QUOTES, 'UTF-8', false); ?></em></span>
|
|
</div>
|
|
<?php endforeach; $this->popLoop(); $loop = $this->getFirstLoop(); ?> |