I am a relative beginner to angular and I am trying to create a web-page that allows users to upload a file, which is then placed within a folder in the working directory.
The upload page component is currently at the path 'uploadtool/frontend/src/app/upload-page/upload-page.component.html'
The destination folder where I want the uploaded files to be saved is 'uploadtool/uploads'
I've searched online for a guide but cant find anything that relates to this specifically.
All i have so far is the upload graphic itself using:
<div class='form-group'>
<label for='file'> Choose File to Upload </label>
<input type='file id='file'>
</div>
Any advice or examples would be greatly appreciated