Last active
March 7, 2019 17:38
-
-
Save musebe/d88ac548d23002e29c14344da487d1eb to your computer and use it in GitHub Desktop.
Revisions
-
musebe revised this gist
Mar 7, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ <div class="row"> <div class="col-md-6 mx-auto"> <h5 class="text-center display-5 my-4">File Uploads,retrieval and deletion</h5> <form action="/uploads" method="POST" enctype="multipart/form-data"> <div class="custom-file mb-3"> <input type="file" name="image" id="image" class="custom-file-input" value="fileupload"> <label for="file" class="custom-file-label">Choose File</label> -
musebe revised this gist
Mar 7, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ <div class="row"> <div class="col-md-6 mx-auto"> <h5 class="text-center display-5 my-4">File Uploads,retrieval and deletion</h5> <form action="/uploads" method="POST"> <div class="custom-file mb-3"> <input type="file" name="image" id="image" class="custom-file-input" value="fileupload"> <label for="file" class="custom-file-label">Choose File</label> -
musebe revised this gist
Mar 7, 2019 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,6 @@ <div class="row"> <div class="col-md-6 mx-auto"> <h5 class="text-center display-5 my-4">File Uploads,retrieval and deletion</h5> <form action="/uploads" method="POST" enctype="multipart/form-data"> <div class="custom-file mb-3"> <input type="file" name="image" id="image" class="custom-file-input" value="fileupload"> -
musebe created this gist
Mar 7, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ <div class="row"> <div class="col-md-6 mx-auto"> <h5 class="text-center display-5 my-4">File Uploads,retrieval and deletion</h5> <form action="/uploads" method="POST" enctype="multipart/form-data"> <div class="custom-file mb-3"> <input type="file" name="image" id="image" class="custom-file-input" value="fileupload"> <label for="file" class="custom-file-label">Choose File</label> </div> <input type="submit" value="Submit" class="btn btn-primary btn-block"> </form> <hr> </div> </div>