Upload files to "embedded_ui"

Upload embedded_ui files
This commit is contained in:
2025-09-29 14:14:40 +00:00
parent 8114ed4367
commit da178f07ce
2 changed files with 45 additions and 0 deletions

8
embedded_ui/about.html Normal file
View File

@@ -0,0 +1,8 @@
<section class="section">
<div class="container">
<h2 class="title is-4">WordPress Port for Superengine</h2>
<p>Copyright 2025 Superengine.</p>
<p>License: <a href="https://www.superengine.tech/legal/software-license-agreement-for-ports" target="_blank">Software License Agreement for Ports</a>.</p>
<p class="mt-5">This port uses the wordpress:6.8.2-php8.1-apache and mysql:9.4.0 images from Docker Hub, third-party softwares with different copyright owners and licenses.</p>
</div>
</section>

View File

@@ -0,0 +1,37 @@
<section class="section">
<div class="container">
<h2 class="title is-4">WordPress</h2>
<p class="mb-3">WordPress is set to run on port {{entitlements.port-number}}.</p>
<a href="http://localhost:{{entitlements.port-number}}" target="_blank" class="button is-dark">Open WordPress</a>
</div>
</section>
<section class="section">
<div class="container">
<h2 class="title is-4">Database</h2>
<p class="mb-3">Bellow are the connection details of the MySQL database used by WordPress.</p>
<table class="table">
<tbody>
<tr>
<th>Database name</th>
<td>{{entitlements.db-name}}</td>
</tr>
<tr>
<th>User</th>
<td>{{entitlements.db-user}}</td>
</tr>
<tr>
<th>Password</th>
<td>{{entitlements.db-password}}</td>
</tr>
<tr>
<th>Port</th>
<td>{{entitlements.db-port-number}}</td>
</tr>
<tr>
<th>Root password</th>
<td>{{entitlements.db-root-password}}</td>
</tr>
</tbody>
</table>
</div>
</section>