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.
 
 
 
 

27 lines
654 B

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <!-- Head content -->
  5. </head>
  6. <body>
  7. <h2>Create Job</h2>
  8. {% if message %}
  9. <p>{{ message }}</p>
  10. {% endif %}
  11. <form action="{{ url_for('create_job') }}" method="post">
  12. <label for="required_caregiving_type">Required Caregiving Type:</label>
  13. <input type="text" id="required_caregiving_type" name="required_caregiving_type" required>
  14. <label for="other_requirements">Other Requirements:</label>
  15. <textarea id="other_requirements" name="other_requirements" required></textarea>
  16. <button type="submit">Create Job</button>
  17. </form>
  18. </body>
  19. </html>