Differences From Artifact [7f908702cf]:
- File elisp-http-prompt.el — part of check-in [2c8dd9367f] at 2025-07-28 19:04:24 on branch trunk — elisp http client (user: elisper, size: 512) [annotate] [blame] [check-ins using]
To Artifact [3c51eb34e7]:
- File elisp-http-prompt.el — part of check-in [0e1640faf8] at 2025-07-28 20:07:22 on branch trunk — add function for get token (user: elisper, size: 511) [annotate] [blame] [check-ins using]
- File http/elisp-http-prompt.el — part of check-in [a9718f9d0e] at 2025-08-03 12:37:31 on branch trunk — Move http module related code to http directory (user: w96k, size: 511) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - |
(defun elisp-http-prompt-api ()
(let* ((prompt-api (propertize "апи: " 'face '(:foreground "cyan" :weight bold))))
(read-from-minibuffer prompt-api)))
(defun elisp-http-prompt-email ()
(let* ((prompt-register (propertize "email: " 'face '(:foreground "cyan" :weight bold))))
(read-from-minibuffer prompt-register)))
(defun elisp-http-prompt-password ()
(let* ((prompt-register (propertize "password: " 'face '(:foreground "red" :weight bold))))
(read-from-minibuffer prompt-register)))
|