Files
wordpress-port/embedded_ui/overview.html.hbs
2025-11-24 21:49:04 +00:00

38 lines
1.3 KiB
Handlebars

<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://{{entitlements.host}}:{{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>