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.

12 lines
542 B

  1. <div class="w3-third w3-container">
  2. <h1 class="w3-text-teal w3-center">Add Category</h1>
  3. <form action="/admin/" method ="post" class="w3-container w3-card-4">
  4. <div class="w3-group w3-padding-16">
  5. <input class="w3-input" type="text" name="add_category" required>
  6. <label class="w3-label w3-validate">Category</label>
  7. </div>
  8. <p><input type="submit" name="submit" value="Add"
  9. class="w3-padding-16 w3-hover-dark-grey w3-btn-block w3-center-align"/></p>
  10. </form>
  11. </div>