fix: enhance layout consistency in InstallKey.page

- Wrapped the Install Key button in a span element to improve layout consistency.
- This change continues the effort to enhance visual structure across the plugin.
This commit is contained in:
Zack Spear
2025-05-20 17:27:25 -07:00
parent 4931d00990
commit 6ab0e7bbea

View File

@@ -25,6 +25,10 @@ function installKey(file) {
<span class="info">_(To install a registration key, paste the key file URL in the box below and click **Install Key**)_.</span>
_(Key file URL)_:
: <input type="text" name="file" id="key_file" maxlength="1024" value="" style="width:33%">
<input type="button" value="_(Install Key)_" onclick="installKey(this.form.file.value.trim())">
: <input type="text" name="file" id="key_file" maxlength="1024" value="">
&nbsp;
: <span class="inline-block">
<input type="button" value="_(Install Key)_" onclick="installKey(this.form.file.value.trim())">
</span>
</form>