Personal blog written from scratch using Node.js, Bootstrap, and MySQL. https://jrtechs.net
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
477 B

  1. <div class="blogPost">
  2. <h1 class="text-center">Add Category</h1>
  3. <form action="/admin/" method ="post" class="p-2">
  4. <div class="form-group">
  5. <input class="form-control" type="text" name="add_category" required>
  6. <label>Category</label>
  7. </div>
  8. <div class="text-center">
  9. <input type="submit" name="submit" value="Add"
  10. class="btn btn-lg btn-secondary"/>
  11. </div>
  12. </form>
  13. </div>
  14. <br>