richardgirges / express-fileupload

Simple express file upload middleware that wraps around busboy
MIT License
1.52k stars 261 forks source link

Upload file from url #299

Closed Sayrix closed 2 years ago

Sayrix commented 2 years ago

Hey I don't know how to make a button "Upload from url" I'm really bad in HTML, can someone help me ?

My actuel fronted:



<head>
  <style type="text/css">
    body {
      text-align: center;
    }

    form {
      display: inline-block;
    }
  </style>
</head>

<body>
  <br><br><br>

  <form ref="uploadForm" id="uploadForm" action="https://upload.sayrix.fr/upload" method="post"
    enctype="multipart/form-data">
    <input type="file" name="sampleFile">
    <input type="submit" value="Upload!">
  </form>

</body>

</html>```