[Django]-Exception Type: MultiValueDictKeyError when send POST request

4👍

You are missing the name arguments for your inputs. The ids are only used by CSS and JS. Try using

<input type="text" class="form-control" name="title" id="title" placeholder="Write Title Later" >

instead of

<input type="text" class="form-control" id="title" placeholder="Write Title Later" >
👤Selcuk

Leave a comment