| 1 |
<section id="wpr-show-connection-key" style="padding: 30px 0; display: none;"> |
| 2 |
<div style="max-width: 760px; margin: auto; padding: 20px; box-sizing: border-box; box-shadow: 2px 2px 9px rgb(212 212 212), 0 0 9px rgb(212 212 212); border-radius: 11px; background: #fff;"> |
| 3 |
<h4 class="text-left" style="margin-top: 0;"> |
| 4 |
<span>Connection Key</span> |
| 5 |
</h4> |
| 6 |
<div style="margin-bottom: 12px;"> |
| 7 |
Use this key on your WPRemote dashboard to connect this site. |
| 8 |
</div> |
| 9 |
<div style="display: flex; gap: 8px; align-items: center;"> |
| 10 |
<input |
| 11 |
type="password" |
| 12 |
id="wpr-connection-key" |
| 13 |
name="connection_key" |
| 14 |
value="<?php echo esc_attr($this->bvinfo->getConnectionKey()); ?>" |
| 15 |
class="widefat" |
| 16 |
style="flex: 1;" |
| 17 |
readonly |
| 18 |
> |
| 19 |
<button type="button" id="wpr-view-connection-key" class="button">View Key</button> |
| 20 |
<button type="button" id="wpr-copy-connection-key" class="button">Copy Key</button> |
| 21 |
</div> |
| 22 |
</div> |
| 23 |
</section> |
| 24 |
|