PluginProbe
The WP Remote WordPress Plugin / 6.76
The WP Remote WordPress Plugin v6.76
6.76 6.72 6.69 6.65 6.62 6.48 6.47 4.87 4.97 5.05 5.09 5.16 5.22 5.24 5.25 5.38 5.41 5.42 5.45 5.47 5.53 5.56 5.65 5.68 5.72 All 54 releases
wpremote / admin / components / show-connection-key.php

show-connection-key.php in The WP Remote WordPress Plugin 6.76, at admin/components/show-connection-key.php

24 lines 948 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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