Replies: 1 comment 1 reply
-
Uploaded files are put available on the path /s/filename Try to upload a file and you will be given a button enabling to download the file or link it within your CSS |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Good afternoon, I have the following question.
I wanted to put an image in the container in the main part.
I want to put it under that text which is "We recommend that you access the "Preferences" section to download your "Account Recovery Key" and store it securely. This key will be necessary to recover your access to the platform and your data. in case you forget your password."
I have a question if that could be possible, I tried it with javascript by putting this var img = document.createElement("img");
img.src = "transports.png";
img.alt = "Image description";
document.getElementById("Content").appendChild(img);
in img.src it tests as many paths of the server where I have it installed as images per internet url
I run into the problem that the url does not allow images to be uploaded since for security reasons etc. it does not upload them and neither does the server and the server routes.
I thought about uploading the image to globaleaks in the files section but I have another question, so could I display it via javascript? Or where for example do you save those files on the server and in that case they can be extracted and displayed using javascript?
Thank you
Beta Was this translation helpful? Give feedback.
All reactions