Answers for "input type file in html"

5

input a file in html form

<form action="{% url 'submit' %}" method="POST" enctype="multipart/form-data">
        {% csrf_token %}
  		<div class="mb-3">
            <label for="formFile" class="form-label">Image</label>
            <input class="form-control" type="file" id="formFile" name="image" accept="image/*">
        </div>

        <button class="btn btn-outline-info" type="submit">Submit</button>
</form>
Posted by: Guest on March-03-2021
1

input type file select only video

accept="video/mp4,video/x-m4v,video/*"
Posted by: Guest on October-14-2020
7

file input file types

<input type="file" accept=".gif,.jpg,.jpeg,.png,.doc,.docx">
Posted by: Guest on May-05-2020
1

HTML input file tag

<label for="myfile">Select a file:</label>
<input type="file" 
  id="myfile" name="myfile">
Posted by: Guest on August-25-2021
1

file input html

<input type="file">
Posted by: Guest on August-15-2021
0

specifying file types in html file input

<input id="fileSelect" type="file" accept=".csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" />
Posted by: Guest on April-29-2021

Browse Popular Code Answers by Language