Compare commits
No commits in common. "ai-dev" and "master" have entirely different histories.
@ -1,311 +0,0 @@
|
|||||||
<?php
|
|
||||||
// LocalAIApi — proxy client for the Responses API.
|
|
||||||
// Usage:
|
|
||||||
// require_once __DIR__ . '/ai/LocalAIApi.php';
|
|
||||||
// $response = LocalAIApi::createResponse([
|
|
||||||
// 'input' => [
|
|
||||||
// ['role' => 'system', 'content' => 'You are a helpful assistant.'],
|
|
||||||
// ['role' => 'user', 'content' => 'Tell me a bedtime story.'],
|
|
||||||
// ],
|
|
||||||
// ]);
|
|
||||||
// if (!empty($response['success'])) {
|
|
||||||
// $decoded = LocalAIApi::decodeJsonFromResponse($response);
|
|
||||||
// }
|
|
||||||
|
|
||||||
class LocalAIApi
|
|
||||||
{
|
|
||||||
/** @var array<string,mixed>|null */
|
|
||||||
private static ?array $configCache = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Signature compatible with the OpenAI Responses API.
|
|
||||||
*
|
|
||||||
* @param array<string,mixed> $params Request body (model, input, text, reasoning, metadata, etc.).
|
|
||||||
* @param array<string,mixed> $options Extra options (timeout, verify_tls, headers, path, project_uuid).
|
|
||||||
* @return array{
|
|
||||||
* success:bool,
|
|
||||||
* status?:int,
|
|
||||||
* data?:mixed,
|
|
||||||
* error?:string,
|
|
||||||
* response?:mixed,
|
|
||||||
* message?:string
|
|
||||||
* }
|
|
||||||
*/
|
|
||||||
public static function createResponse(array $params, array $options = []): array
|
|
||||||
{
|
|
||||||
$cfg = self::config();
|
|
||||||
$payload = $params;
|
|
||||||
|
|
||||||
if (empty($payload['input']) || !is_array($payload['input'])) {
|
|
||||||
return [
|
|
||||||
'success' => false,
|
|
||||||
'error' => 'input_missing',
|
|
||||||
'message' => 'Parameter "input" is required and must be an array.',
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isset($payload['model']) || $payload['model'] === '') {
|
|
||||||
$payload['model'] = $cfg['default_model'];
|
|
||||||
}
|
|
||||||
|
|
||||||
return self::request($options['path'] ?? null, $payload, $options);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Snake_case alias for createResponse (matches the provided example).
|
|
||||||
*
|
|
||||||
* @param array<string,mixed> $params
|
|
||||||
* @param array<string,mixed> $options
|
|
||||||
* @return array<string,mixed>
|
|
||||||
*/
|
|
||||||
public static function create_response(array $params, array $options = []): array
|
|
||||||
{
|
|
||||||
return self::createResponse($params, $options);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Perform a raw request to the AI proxy.
|
|
||||||
*
|
|
||||||
* @param string $path Endpoint (may be an absolute URL).
|
|
||||||
* @param array<string,mixed> $payload JSON payload.
|
|
||||||
* @param array<string,mixed> $options Additional request options.
|
|
||||||
* @return array<string,mixed>
|
|
||||||
*/
|
|
||||||
public static function request(?string $path = null, array $payload = [], array $options = []): array
|
|
||||||
{
|
|
||||||
if (!function_exists('curl_init')) {
|
|
||||||
return [
|
|
||||||
'success' => false,
|
|
||||||
'error' => 'curl_missing',
|
|
||||||
'message' => 'PHP cURL extension is missing. Install or enable it on the VM.',
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
$cfg = self::config();
|
|
||||||
|
|
||||||
$projectUuid = $cfg['project_uuid'];
|
|
||||||
if (empty($projectUuid)) {
|
|
||||||
return [
|
|
||||||
'success' => false,
|
|
||||||
'error' => 'project_uuid_missing',
|
|
||||||
'message' => 'PROJECT_UUID is not defined; aborting AI request.',
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
$defaultPath = $cfg['responses_path'] ?? null;
|
|
||||||
$resolvedPath = $path ?? ($options['path'] ?? $defaultPath);
|
|
||||||
if (empty($resolvedPath)) {
|
|
||||||
return [
|
|
||||||
'success' => false,
|
|
||||||
'error' => 'project_id_missing',
|
|
||||||
'message' => 'PROJECT_ID is not defined; cannot resolve AI proxy endpoint.',
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
$url = self::buildUrl($resolvedPath, $cfg['base_url']);
|
|
||||||
$baseTimeout = isset($cfg['timeout']) ? (int) $cfg['timeout'] : 30;
|
|
||||||
$timeout = isset($options['timeout']) ? (int) $options['timeout'] : $baseTimeout;
|
|
||||||
if ($timeout <= 0) {
|
|
||||||
$timeout = 30;
|
|
||||||
}
|
|
||||||
|
|
||||||
$baseVerifyTls = array_key_exists('verify_tls', $cfg) ? (bool) $cfg['verify_tls'] : true;
|
|
||||||
$verifyTls = array_key_exists('verify_tls', $options)
|
|
||||||
? (bool) $options['verify_tls']
|
|
||||||
: $baseVerifyTls;
|
|
||||||
|
|
||||||
$projectHeader = $cfg['project_header'];
|
|
||||||
|
|
||||||
$headers = [
|
|
||||||
'Content-Type: application/json',
|
|
||||||
'Accept: application/json',
|
|
||||||
];
|
|
||||||
$headers[] = $projectHeader . ': ' . $projectUuid;
|
|
||||||
if (!empty($options['headers']) && is_array($options['headers'])) {
|
|
||||||
foreach ($options['headers'] as $header) {
|
|
||||||
if (is_string($header) && $header !== '') {
|
|
||||||
$headers[] = $header;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($projectUuid) && !array_key_exists('project_uuid', $payload)) {
|
|
||||||
$payload['project_uuid'] = $projectUuid;
|
|
||||||
}
|
|
||||||
|
|
||||||
$body = json_encode($payload, JSON_UNESCAPED_UNICODE);
|
|
||||||
if ($body === false) {
|
|
||||||
return [
|
|
||||||
'success' => false,
|
|
||||||
'error' => 'json_encode_failed',
|
|
||||||
'message' => 'Failed to encode request body to JSON.',
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
$ch = curl_init($url);
|
|
||||||
curl_setopt($ch, CURLOPT_POST, true);
|
|
||||||
curl_setopt($ch, CURLOPT_POSTFIELDS, $body);
|
|
||||||
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
|
|
||||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
||||||
curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
|
|
||||||
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
|
|
||||||
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, $verifyTls);
|
|
||||||
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, $verifyTls ? 2 : 0);
|
|
||||||
curl_setopt($ch, CURLOPT_FAILONERROR, false);
|
|
||||||
|
|
||||||
$responseBody = curl_exec($ch);
|
|
||||||
if ($responseBody === false) {
|
|
||||||
$error = curl_error($ch) ?: 'Unknown cURL error';
|
|
||||||
curl_close($ch);
|
|
||||||
return [
|
|
||||||
'success' => false,
|
|
||||||
'error' => 'curl_error',
|
|
||||||
'message' => $error,
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
$status = (int) curl_getinfo($ch, CURLINFO_HTTP_CODE);
|
|
||||||
curl_close($ch);
|
|
||||||
|
|
||||||
$decoded = null;
|
|
||||||
if ($responseBody !== '' && $responseBody !== null) {
|
|
||||||
$decoded = json_decode($responseBody, true);
|
|
||||||
if (json_last_error() !== JSON_ERROR_NONE) {
|
|
||||||
$decoded = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($status >= 200 && $status < 300) {
|
|
||||||
return [
|
|
||||||
'success' => true,
|
|
||||||
'status' => $status,
|
|
||||||
'data' => $decoded ?? $responseBody,
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
$errorMessage = 'AI proxy request failed';
|
|
||||||
if (is_array($decoded)) {
|
|
||||||
$errorMessage = $decoded['error'] ?? $decoded['message'] ?? $errorMessage;
|
|
||||||
} elseif (is_string($responseBody) && $responseBody !== '') {
|
|
||||||
$errorMessage = $responseBody;
|
|
||||||
}
|
|
||||||
|
|
||||||
return [
|
|
||||||
'success' => false,
|
|
||||||
'status' => $status,
|
|
||||||
'error' => $errorMessage,
|
|
||||||
'response' => $decoded ?? $responseBody,
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Extract plain text from a Responses API payload.
|
|
||||||
*
|
|
||||||
* @param array<string,mixed> $response Result of LocalAIApi::createResponse|request.
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public static function extractText(array $response): string
|
|
||||||
{
|
|
||||||
$payload = $response['data'] ?? $response;
|
|
||||||
if (!is_array($payload)) {
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($payload['output']) && is_array($payload['output'])) {
|
|
||||||
$combined = '';
|
|
||||||
foreach ($payload['output'] as $item) {
|
|
||||||
if (!isset($item['content']) || !is_array($item['content'])) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
foreach ($item['content'] as $block) {
|
|
||||||
if (is_array($block) && ($block['type'] ?? '') === 'output_text' && !empty($block['text'])) {
|
|
||||||
$combined .= $block['text'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ($combined !== '') {
|
|
||||||
return $combined;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($payload['choices'][0]['message']['content'])) {
|
|
||||||
return (string) $payload['choices'][0]['message']['content'];
|
|
||||||
}
|
|
||||||
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Attempt to decode JSON emitted by the model (handles markdown fences).
|
|
||||||
*
|
|
||||||
* @param array<string,mixed> $response
|
|
||||||
* @return array<string,mixed>|null
|
|
||||||
*/
|
|
||||||
public static function decodeJsonFromResponse(array $response): ?array
|
|
||||||
{
|
|
||||||
$text = self::extractText($response);
|
|
||||||
if ($text === '') {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
$decoded = json_decode($text, true);
|
|
||||||
if (is_array($decoded)) {
|
|
||||||
return $decoded;
|
|
||||||
}
|
|
||||||
|
|
||||||
$stripped = preg_replace('/^```json|```$/m', '', trim($text));
|
|
||||||
if ($stripped !== null && $stripped !== $text) {
|
|
||||||
$decoded = json_decode($stripped, true);
|
|
||||||
if (is_array($decoded)) {
|
|
||||||
return $decoded;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Load configuration from ai/config.php.
|
|
||||||
*
|
|
||||||
* @return array<string,mixed>
|
|
||||||
*/
|
|
||||||
private static function config(): array
|
|
||||||
{
|
|
||||||
if (self::$configCache === null) {
|
|
||||||
$configPath = __DIR__ . '/config.php';
|
|
||||||
if (!file_exists($configPath)) {
|
|
||||||
throw new RuntimeException('AI config file not found: ai/config.php');
|
|
||||||
}
|
|
||||||
$cfg = require $configPath;
|
|
||||||
if (!is_array($cfg)) {
|
|
||||||
throw new RuntimeException('Invalid AI config format: expected array');
|
|
||||||
}
|
|
||||||
self::$configCache = $cfg;
|
|
||||||
}
|
|
||||||
|
|
||||||
return self::$configCache;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Build an absolute URL from base_url and a path.
|
|
||||||
*/
|
|
||||||
private static function buildUrl(string $path, string $baseUrl): string
|
|
||||||
{
|
|
||||||
$trimmed = trim($path);
|
|
||||||
if ($trimmed === '') {
|
|
||||||
return $baseUrl;
|
|
||||||
}
|
|
||||||
if (str_starts_with($trimmed, 'http://') || str_starts_with($trimmed, 'https://')) {
|
|
||||||
return $trimmed;
|
|
||||||
}
|
|
||||||
if ($trimmed[0] === '/') {
|
|
||||||
return $baseUrl . $trimmed;
|
|
||||||
}
|
|
||||||
return $baseUrl . '/' . $trimmed;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Legacy alias for backward compatibility with the previous class name.
|
|
||||||
if (!class_exists('OpenAIService')) {
|
|
||||||
class_alias(LocalAIApi::class, 'OpenAIService');
|
|
||||||
}
|
|
||||||
@ -1,52 +0,0 @@
|
|||||||
<?php
|
|
||||||
// OpenAI proxy configuration (workspace scope).
|
|
||||||
// Reads values from environment variables or executor/.env.
|
|
||||||
|
|
||||||
$projectUuid = getenv('PROJECT_UUID');
|
|
||||||
$projectId = getenv('PROJECT_ID');
|
|
||||||
|
|
||||||
if (
|
|
||||||
($projectUuid === false || $projectUuid === null || $projectUuid === '') ||
|
|
||||||
($projectId === false || $projectId === null || $projectId === '')
|
|
||||||
) {
|
|
||||||
$envPath = realpath(__DIR__ . '/../../.env'); // executor/.env
|
|
||||||
if ($envPath && is_readable($envPath)) {
|
|
||||||
$lines = @file($envPath, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES) ?: [];
|
|
||||||
foreach ($lines as $line) {
|
|
||||||
$line = trim($line);
|
|
||||||
if ($line === '' || $line[0] === '#') {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (!str_contains($line, '=')) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
[$key, $value] = array_map('trim', explode('=', $line, 2));
|
|
||||||
if ($key === '') {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
$value = trim($value, "\"' ");
|
|
||||||
if (getenv($key) === false || getenv($key) === '') {
|
|
||||||
putenv("{$key}={$value}");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$projectUuid = getenv('PROJECT_UUID');
|
|
||||||
$projectId = getenv('PROJECT_ID');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$projectUuid = ($projectUuid === false) ? null : $projectUuid;
|
|
||||||
$projectId = ($projectId === false) ? null : $projectId;
|
|
||||||
|
|
||||||
$baseUrl = 'https://flatlogic.com';
|
|
||||||
$responsesPath = $projectId ? "/projects/{$projectId}/ai-request" : null;
|
|
||||||
|
|
||||||
return [
|
|
||||||
'base_url' => $baseUrl,
|
|
||||||
'responses_path' => $responsesPath,
|
|
||||||
'project_id' => $projectId,
|
|
||||||
'project_uuid' => $projectUuid,
|
|
||||||
'project_header' => 'project-uuid',
|
|
||||||
'default_model' => 'gpt-5',
|
|
||||||
'timeout' => 30,
|
|
||||||
'verify_tls' => true,
|
|
||||||
];
|
|
||||||
@ -1,123 +0,0 @@
|
|||||||
/*
|
|
||||||
* DPW PKS Jambi Portal - Custom Styles
|
|
||||||
*/
|
|
||||||
|
|
||||||
:root {
|
|
||||||
--pks-orange: #FF5E0E;
|
|
||||||
--pks-orange-hover: #FF7A33;
|
|
||||||
--pks-dark: #212529;
|
|
||||||
--pks-light: #F8F9FA;
|
|
||||||
--pks-white: #FFFFFF;
|
|
||||||
--pks-orange-shadow: #D9500C;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-family: 'Poppins', sans-serif;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
min-height: 100vh;
|
|
||||||
background-color: var(--pks-white);
|
|
||||||
}
|
|
||||||
|
|
||||||
main {
|
|
||||||
flex: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Header */
|
|
||||||
.logo {
|
|
||||||
max-height: 80px;
|
|
||||||
width: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.address {
|
|
||||||
max-width: 350px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.real-time-clock {
|
|
||||||
font-size: 1.5rem;
|
|
||||||
font-weight: 600;
|
|
||||||
color: var(--pks-dark);
|
|
||||||
opacity: 0.8;
|
|
||||||
text-align: right;
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.social-icons {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.social-icon {
|
|
||||||
font-size: 1.5rem;
|
|
||||||
margin-left: 0.75rem;
|
|
||||||
color: var(--pks-dark);
|
|
||||||
transition: color 0.3s ease, transform 0.3s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.social-icon:hover {
|
|
||||||
color: var(--pks-orange);
|
|
||||||
transform: scale(1.1);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Buttons */
|
|
||||||
.btn-primary {
|
|
||||||
background-color: var(--pks-orange);
|
|
||||||
border-color: var(--pks-orange);
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary:hover, .btn-primary:focus {
|
|
||||||
background-color: var(--pks-orange-hover);
|
|
||||||
border-color: var(--pks-orange-hover);
|
|
||||||
box-shadow: 0 6px 0 var(--pks-orange-shadow);
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-3d {
|
|
||||||
border-radius: 0.75rem;
|
|
||||||
padding: 0.8rem 2rem;
|
|
||||||
font-weight: 700;
|
|
||||||
text-transform: uppercase;
|
|
||||||
letter-spacing: 1px;
|
|
||||||
box-shadow: 0 4px 0 var(--pks-orange-shadow);
|
|
||||||
transition: all 0.15s ease-in-out;
|
|
||||||
transform: translateY(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-3d:hover {
|
|
||||||
transform: translateY(-2px);
|
|
||||||
box-shadow: 0 6px 0 var(--pks-orange-shadow);
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-3d:active {
|
|
||||||
transform: translateY(2px);
|
|
||||||
box-shadow: 0 2px 0 var(--pks-orange-shadow);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Footer */
|
|
||||||
.motto {
|
|
||||||
font-style: italic;
|
|
||||||
color: rgba(255, 255, 255, 0.8);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Responsive */
|
|
||||||
@media (max-width: 767.98px) {
|
|
||||||
header .row > div {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.logo {
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
margin-right: 0 !important;
|
|
||||||
}
|
|
||||||
.real-time-clock {
|
|
||||||
text-align: center;
|
|
||||||
float: none;
|
|
||||||
margin-top: 1rem;
|
|
||||||
}
|
|
||||||
.social-icons {
|
|
||||||
text-align: center !important;
|
|
||||||
margin-top: 1rem;
|
|
||||||
}
|
|
||||||
.social-icon {
|
|
||||||
margin-left: 0.5rem;
|
|
||||||
margin-right: 0.5rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,25 +0,0 @@
|
|||||||
/**
|
|
||||||
* DPW PKS Jambi Portal - Main JavaScript
|
|
||||||
*/
|
|
||||||
|
|
||||||
document.addEventListener('DOMContentLoaded', function () {
|
|
||||||
|
|
||||||
// Real-time Clock
|
|
||||||
const clockElement = document.getElementById('real-time-clock');
|
|
||||||
|
|
||||||
function updateClock() {
|
|
||||||
if (clockElement) {
|
|
||||||
const now = new Date();
|
|
||||||
const hours = String(now.getHours()).padStart(2, '0');
|
|
||||||
const minutes = String(now.getMinutes()).padStart(2, '0');
|
|
||||||
const seconds = String(now.getSeconds()).padStart(2, '0');
|
|
||||||
clockElement.textContent = `${hours}:${minutes}:${seconds}`;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (clockElement) {
|
|
||||||
updateClock(); // Initial call
|
|
||||||
setInterval(updateClock, 1000); // Update every second
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
||||||
227
index.php
227
index.php
@ -1,85 +1,150 @@
|
|||||||
<!DOCTYPE html>
|
<?php
|
||||||
<html lang="id">
|
declare(strict_types=1);
|
||||||
|
@ini_set('display_errors', '1');
|
||||||
|
@error_reporting(E_ALL);
|
||||||
|
@date_default_timezone_set('UTC');
|
||||||
|
|
||||||
|
$phpVersion = PHP_VERSION;
|
||||||
|
$now = date('Y-m-d H:i:s');
|
||||||
|
?>
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<title>New Style</title>
|
||||||
<!-- SEO & Meta Tags -->
|
<?php
|
||||||
<title>DPW PKS Jambi Portal</title>
|
// Read project preview data from environment
|
||||||
<meta name="description" content="Portal publik dan sistem manajemen internal untuk DPW PKS Provinsi Jambi. Built with Flatlogic Generator.">
|
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? '';
|
||||||
<meta name="keywords" content="PKS Jambi, portal PKS, manajemen partai, politik Jambi, dewan pimpinan wilayah, partai keadilan sejahtera, flatlogic">
|
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
|
||||||
|
?>
|
||||||
<!-- Open Graph / Facebook -->
|
<?php if ($projectDescription): ?>
|
||||||
<meta property="og:type" content="website">
|
<!-- Meta description -->
|
||||||
<meta property="og:title" content="DPW PKS Jambi Portal">
|
<meta name="description" content='<?= htmlspecialchars($projectDescription) ?>' />
|
||||||
<meta property="og:description" content="Portal publik dan sistem manajemen internal untuk DPW PKS Provinsi Jambi.">
|
<!-- Open Graph meta tags -->
|
||||||
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
|
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
||||||
|
<!-- Twitter meta tags -->
|
||||||
<!-- Twitter -->
|
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" />
|
||||||
<meta property="twitter:card" content="summary_large_image">
|
<?php endif; ?>
|
||||||
<meta property="twitter:title" content="DPW PKS Jambi Portal">
|
<?php if ($projectImageUrl): ?>
|
||||||
<meta property="twitter:description" content="Portal publik dan sistem manajemen internal untuk DPW PKS Provinsi Jambi.">
|
<!-- Open Graph image -->
|
||||||
<meta property="twitter:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
|
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
||||||
|
<!-- Twitter image -->
|
||||||
<!-- Fonts -->
|
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
<?php endif; ?>
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
|
||||||
<!-- Styles -->
|
<style>
|
||||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
:root {
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
--bg-color-start: #6a11cb;
|
||||||
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
--bg-color-end: #2575fc;
|
||||||
|
--text-color: #ffffff;
|
||||||
|
--card-bg-color: rgba(255, 255, 255, 0.01);
|
||||||
|
--card-border-color: rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
font-family: 'Inter', sans-serif;
|
||||||
|
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end));
|
||||||
|
color: var(--text-color);
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
min-height: 100vh;
|
||||||
|
text-align: center;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
body::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M-10 10L110 10M10 -10L10 110" stroke-width="1" stroke="rgba(255,255,255,0.05)"/></svg>');
|
||||||
|
animation: bg-pan 20s linear infinite;
|
||||||
|
z-index: -1;
|
||||||
|
}
|
||||||
|
@keyframes bg-pan {
|
||||||
|
0% { background-position: 0% 0%; }
|
||||||
|
100% { background-position: 100% 100%; }
|
||||||
|
}
|
||||||
|
main {
|
||||||
|
padding: 2rem;
|
||||||
|
}
|
||||||
|
.card {
|
||||||
|
background: var(--card-bg-color);
|
||||||
|
border: 1px solid var(--card-border-color);
|
||||||
|
border-radius: 16px;
|
||||||
|
padding: 2rem;
|
||||||
|
backdrop-filter: blur(20px);
|
||||||
|
-webkit-backdrop-filter: blur(20px);
|
||||||
|
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
.loader {
|
||||||
|
margin: 1.25rem auto 1.25rem;
|
||||||
|
width: 48px;
|
||||||
|
height: 48px;
|
||||||
|
border: 3px solid rgba(255, 255, 255, 0.25);
|
||||||
|
border-top-color: #fff;
|
||||||
|
border-radius: 50%;
|
||||||
|
animation: spin 1s linear infinite;
|
||||||
|
}
|
||||||
|
@keyframes spin {
|
||||||
|
from { transform: rotate(0deg); }
|
||||||
|
to { transform: rotate(360deg); }
|
||||||
|
}
|
||||||
|
.hint {
|
||||||
|
opacity: 0.9;
|
||||||
|
}
|
||||||
|
.sr-only {
|
||||||
|
position: absolute;
|
||||||
|
width: 1px; height: 1px;
|
||||||
|
padding: 0; margin: -1px;
|
||||||
|
overflow: hidden;
|
||||||
|
clip: rect(0, 0, 0, 0);
|
||||||
|
white-space: nowrap; border: 0;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 3rem;
|
||||||
|
font-weight: 700;
|
||||||
|
margin: 0 0 1rem;
|
||||||
|
letter-spacing: -1px;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
margin: 0.5rem 0;
|
||||||
|
font-size: 1.1rem;
|
||||||
|
}
|
||||||
|
code {
|
||||||
|
background: rgba(0,0,0,0.2);
|
||||||
|
padding: 2px 6px;
|
||||||
|
border-radius: 4px;
|
||||||
|
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
||||||
|
}
|
||||||
|
footer {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 1rem;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
opacity: 0.7;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<main>
|
||||||
<header class="container-fluid bg-white shadow-sm py-3">
|
<div class="card">
|
||||||
<div class="container">
|
<h1>Analyzing your requirements and generating your website…</h1>
|
||||||
<div class="row align-items-center">
|
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
|
||||||
<div class="col-md-6 col-lg-8 d-flex align-items-center">
|
<span class="sr-only">Loading…</span>
|
||||||
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/82/Logo_Partai_Keadilan_Sejahtera.svg/240px-Logo_Partai_Keadilan_Sejahtera.svg.png" alt="Logo PKS" class="logo me-3">
|
</div>
|
||||||
<div>
|
<p class="hint"><?= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWizzy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.</p>
|
||||||
<h1 class="h5 mb-0 fw-bold">Dewan Pimpinan Wilayah</h1>
|
<p class="hint">This page will update automatically as the plan is implemented.</p>
|
||||||
<h2 class="h6 mb-1 text-muted">Partai Keadilan Sejahtera</h2>
|
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
|
||||||
<p class="small address mb-0">Jl. Kol. Amir Hamzah, Lr. Mangga, No. 28 RT. 24 Kel. Selamat, Kec. Danau Sipin, Kota Jambi 36129</p>
|
</div>
|
||||||
</div>
|
</main>
|
||||||
</div>
|
<footer>
|
||||||
<div class="col-md-6 col-lg-4">
|
Page updated: <?= htmlspecialchars($now) ?> (UTC)
|
||||||
<div id="real-time-clock" class="real-time-clock"></div>
|
</footer>
|
||||||
<div class="social-icons mt-2 text-md-end">
|
|
||||||
<a href="https://youtube.com/PKSTVIndonesia" target="_blank" class="social-icon"><i class="bi bi-youtube"></i></a>
|
|
||||||
<a href="https://instagram.com/PK_Sejahtera" target="_blank" class="social-icon"><i class="bi bi-instagram"></i></a>
|
|
||||||
<a href="https://whatsapp.com/channel/0029VaAYdJH4yltT252sss3g" target="_blank" class="social-icon"><i class="bi bi-whatsapp"></i></a>
|
|
||||||
<a href="https://tiktok.com/@pksejahtera" target="_blank" class="social-icon"><i class="bi bi-tiktok"></i></a>
|
|
||||||
<a href="https://twitter.com/PKSejahtera" target="_blank" class="social-icon"><i class="bi bi-twitter-x"></i></a>
|
|
||||||
<a href="https://telegram.me/PK_Sejahtera" target="_blank" class="social-icon"><i class="bi bi-telegram"></i></a>
|
|
||||||
<a href="https://fb.com/HumasPartaiKeadilanSejahtera" target="_blank" class="social-icon"><i class="bi bi-facebook"></i></a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<main class="container my-5">
|
|
||||||
<div class="text-center p-5 rounded-3 bg-light">
|
|
||||||
<h1 class="display-4 fw-bold">Selamat Datang di Portal DPW PKS Jambi</h1>
|
|
||||||
<p class="lead col-lg-8 mx-auto text-muted">
|
|
||||||
Ini adalah halaman awal dari portal publik dan sistem manajemen internal.
|
|
||||||
Fitur-fitur lain sedang dalam pengembangan.
|
|
||||||
</p>
|
|
||||||
<a href="#" class="btn btn-primary btn-lg btn-3d mt-3">Login ke Sistem</a>
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer class="container-fluid bg-dark text-white py-4 mt-auto">
|
|
||||||
<div class="container text-center">
|
|
||||||
<p class="motto">“Bersih, Peduli, Profesional dan Kenegarawanan”</p>
|
|
||||||
<p class="mb-0">© <?php echo date("Y"); ?> DPW PKS Jambi. All Rights Reserved.</p>
|
|
||||||
<p class="small"><a href="#" class="text-white-50">Kebijakan Privasi</a> | <a href="#" class="text-white-50">Kontak Kami</a></p>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
||||||
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user