fix typo in curl.md

This commit is contained in:
creating2morrow 2023-05-01 21:50:40 -04:00
parent 3fc970f490
commit b41fcfdd5d
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ NOTE: JWT for micro servers disabled in dev
* send second request with signature to get AUTHID and UID
```bash
curl -iv -x localhost:9043/alice.b32.i2p/login/<SIGNATURE>/<AUTHID>/<UID>
curl -iv -x localhost:9043/<XMR_ADDRESS>/login/<SIGNATURE>/<AUTHID>/<UID>
```
## generate invoice

View file

@ -27,7 +27,7 @@ impl eframe::App for LoginApp {
ui.label("it will not be displayed again after logging in");
ui.label("use this or set your own secure password.");
ui.horizontal(|ui| {
let cred_label = ui.label("send to: \t");
let cred_label = ui.label("credential: \t");
ui.text_edit_singleline(&mut self.credential)
.labelled_by(cred_label.id);
});