I have .Net Core MVC application written in C# and I have this HTML
<form>
<input type="text" id="username" />
<input type="text" id="password" />
<input type="submit" />
</form>
Now I want to put FileUpload between username and password, but I also want to use separate Form and submit for it. How do I achieve this?