mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-13 13:27:05 +02:00
added text colour to customer settings
This commit is contained in:
@ -45,9 +45,15 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label" for="colour"><?php print $text_colour; ?>:</label>
|
||||
<label class="control-label" for="colour"><?php print $text_background_colour; ?>:</label>
|
||||
<div class="controls">
|
||||
<input type="text" class="text" name="colour" id="colour" placeholder="" value="<?php if(isset($a['colour'])) { print $a['colour']; } ?>" oninput="Piler.change_box_colour();" /> <span id="cp" style="<?php if(isset($a['colour'])) { ?>background: <?php print $a['colour']; ?>;<?php } ?>"> </span>
|
||||
<input type="text" class="text" name="background_colour" id="background_colour" placeholder="" value="<?php if(isset($a['background_colour'])) { print $a['background_colour']; } ?>" oninput="Piler.change_box_colour('background_colour', 'cp');" /> <span id="cp" style="<?php if(isset($a['background_colour'])) { ?>background: <?php print $a['background_colour']; ?>;<?php } ?>"> </span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label" for="colour"><?php print $text_text_colour; ?>:</label>
|
||||
<div class="controls">
|
||||
<input type="text" class="text" name="text_colour" id="text_colour" placeholder="" value="<?php if(isset($a['text_colour'])) { print $a['text_colour']; } ?>" oninput="Piler.change_box_colour('text_colour', 'cp2');" /> <span id="cp2" style="<?php if(isset($a['text_colour'])) { ?>background: <?php print $a['text_colour']; ?>;<?php } ?>"> </span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -72,7 +78,8 @@
|
||||
<th class="domaincell"><?php print $text_branding_text; ?></th>
|
||||
<th class="domaincell"><?php print $text_branding_url; ?></th>
|
||||
<th class="domaincell"><?php print $text_branding_logo; ?></th>
|
||||
<th class="domaincell"><?php print $text_colour; ?></th>
|
||||
<th class="domaincell"><?php print $text_background_colour; ?></th>
|
||||
<th class="domaincell"><?php print $text_text_colour; ?></th>
|
||||
<th class="domaincell"> </th>
|
||||
<th class="domaincell"> </th>
|
||||
</tr>
|
||||
@ -83,7 +90,8 @@
|
||||
<td class="domaincell"><?php print $e['branding_text']; ?></td>
|
||||
<td class="domaincell"><?php print $e['branding_url']; ?></td>
|
||||
<td class="domaincell"><?php if($e['branding_logo']) { ?><img src="/images/<?php print $e['branding_logo']; ?>" /><?php } ?></td>
|
||||
<td class="domaincell"><?php print $e['colour']; ?></td>
|
||||
<td class="domaincell"><?php print $e['background_colour']; ?></td>
|
||||
<td class="domaincell"><?php print $e['text_colour']; ?></td>
|
||||
<td class="domaincell"><a href="index.php?route=customer/list&id=<?php print $e['id']; ?>"><?php print $text_edit; ?></a></td>
|
||||
<td class="domaincell"><a href="index.php?route=customer/remove&id=<?php print $e['id']; ?>&domain=<?php print urlencode($e['domain']); ?>&confirmed=1" onclick="if(confirm('<?php print $text_remove; ?>: ' + '\'<?php print $e['domain']; ?>\'')) return true; return false;"><?php print $text_remove; ?></a></td>
|
||||
</tr>
|
||||
|
Reference in New Issue
Block a user