Files
wordpress-port/embedded_ui/overview.html.hbs

38 lines
1.3 KiB
Handlebars
Raw Normal View History

<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>