mirror of
https://github.com/creating2morrow/neveko.git
synced 2025-03-24 16:18:53 +00:00
fix typo in curl.md
This commit is contained in:
parent
3fc970f490
commit
b41fcfdd5d
2 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ NOTE: JWT for micro servers disabled in dev
|
||||||
* send second request with signature to get AUTHID and UID
|
* send second request with signature to get AUTHID and UID
|
||||||
|
|
||||||
```bash
|
```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
|
## generate invoice
|
||||||
|
|
|
@ -27,7 +27,7 @@ impl eframe::App for LoginApp {
|
||||||
ui.label("it will not be displayed again after logging in");
|
ui.label("it will not be displayed again after logging in");
|
||||||
ui.label("use this or set your own secure password.");
|
ui.label("use this or set your own secure password.");
|
||||||
ui.horizontal(|ui| {
|
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)
|
ui.text_edit_singleline(&mut self.credential)
|
||||||
.labelled_by(cred_label.id);
|
.labelled_by(cred_label.id);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue