30 lines
564 B
PHP
30 lines
564 B
PHP
<?php
|
|
//
|
|
// OpenSMTPD Admin
|
|
// by Mischa Peters <mischa at high5 dot nl>
|
|
// Copyright (c) 2022 High5!
|
|
// License Info: LICENSE.TXT
|
|
//
|
|
// File: list-admin.php
|
|
//
|
|
// Template File: list-admin.tpl
|
|
//
|
|
// Template Variables:
|
|
//
|
|
// list_admins
|
|
//
|
|
// Form POST \ GET Variables:
|
|
//
|
|
// -none-
|
|
//
|
|
require '../functions.inc.php';
|
|
include '../languages/' . check_language() . '.lang';
|
|
|
|
$list_admins = list_admins();
|
|
|
|
include '../templates/header.tpl';
|
|
include '../templates/admin_menu.tpl';
|
|
include '../templates/admin_list-admin.tpl';
|
|
include '../templates/footer.tpl';
|
|
?>
|