diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-09-08 22:17:48 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-09-08 22:17:48 +0300 |
| commit | c7ba6ae909c52c1acd3107e032142beffbb53cf0 (patch) | |
| tree | f538f043f69de3784f6000e5bb89606a845426ff /web/html/form/reality_settings.html | |
| parent | 3edf79e589ae765562f7360b589029ec8f198bc8 (diff) | |
add clear button
Diffstat (limited to 'web/html/form/reality_settings.html')
| -rw-r--r-- | web/html/form/reality_settings.html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/web/html/form/reality_settings.html b/web/html/form/reality_settings.html index feacccbe..79477270 100644 --- a/web/html/form/reality_settings.html +++ b/web/html/form/reality_settings.html @@ -48,7 +48,10 @@ <a-textarea v-model="inbound.stream.reality.privateKey"></a-textarea> </a-form-item> <a-form-item label=" "> - <a-button type="primary" icon="import" @click="getNewX25519Cert">Get New Cert</a-button> + <a-space> + <a-button type="primary" icon="import" @click="getNewX25519Cert">Get New Cert</a-button> + <a-button danger @click="clearX25519Cert">Clear</a-button> + </a-space> </a-form-item> <a-form-item label="mldsa65 Seed"> <a-textarea v-model="inbound.stream.reality.mldsa65Seed"></a-textarea> @@ -57,7 +60,10 @@ <a-textarea v-model="inbound.stream.reality.settings.mldsa65Verify"></a-textarea> </a-form-item> <a-form-item label=" "> - <a-button type="primary" icon="import" @click="getNewmldsa65">Get New Seed</a-button> + <a-space> + <a-button type="primary" icon="import" @click="getNewmldsa65">Get New Seed</a-button> + <a-button danger @click="clearMldsa65">Clear</a-button> + </a-space> </a-form-item> </template> {{end}}
\ No newline at end of file |
