mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-02-01 20:19:32 +01:00
16 lines
454 B
HTML
16 lines
454 B
HTML
<table class="sub-menu">
|
|
<tr>
|
|
<td style="padding: 14px 0 24px 0;" ><a class="add-name"><b>Editing IP Address</b></a>
|
|
<?php
|
|
if (!empty($_SESSION['error_msg'])) {
|
|
echo "<a class=\"add-error\"> → ".$_SESSION['error_msg']."</a>";
|
|
} else {
|
|
if (!empty($_SESSION['ok_msg'])) {
|
|
echo "<a class=\"add-ok\"> → ".$_SESSION['ok_msg']."</a>";
|
|
}
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
</table>
|