# wpremote/6.76/admin/components/show-connection-key.php

The WP Remote WordPress Plugin, version 6.76. 24 lines.

- Page: https://pluginprobe.com/plugins/wpremote/6.76/code/admin/components/show-connection-key.php
- Raw: https://pluginprobe.com/plugins/wpremote/6.76/raw/admin/components/show-connection-key.php
- Modified: 2026-09-17T11:43:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpremote/6.76/code/admin/components/show-connection-key.php#L10-L20`.

```php
<section id="wpr-show-connection-key" style="padding: 30px 0; display: none;">
	<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;">
		<h4 class="text-left" style="margin-top: 0;">
			<span>Connection Key</span>
		</h4>
		<div style="margin-bottom: 12px;">
			Use this key on your WPRemote dashboard to connect this site.
		</div>
		<div style="display: flex; gap: 8px; align-items: center;">
			<input
				type="password"
				id="wpr-connection-key"
				name="connection_key"
				value="<?php echo esc_attr($this->bvinfo->getConnectionKey()); ?>"
				class="widefat"
				style="flex: 1;"
				readonly
			>
			<button type="button" id="wpr-view-connection-key" class="button">View Key</button>
			<button type="button" id="wpr-copy-connection-key" class="button">Copy Key</button>
		</div>
	</div>
</section>

```
