Skip to content
Snippets Groups Projects

Master

Merged Felix Chadwick-Smith requested to merge master into main
4 files
+ 44
24
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 14
12
@@ -11,18 +11,20 @@
@@ -11,18 +11,20 @@
<body>
<body>
<h2>Add Project</h2>
<h2>Add Project</h2>
<form method="POST" action="{{ url_for('add_project') }}">
<form method="POST" action="{{ url_for('add_project') }}">
{{ form.csrf_token }}
{% if form %}
<div class="form-group">
{{ form.csrf_token }}
{{ form.title.label }}
<div class="form-group">
{{ form.title(class="form-control", placeholder="Enter project title") }}
{{ form.title.label }}
</div>
{{ form.title(class="form-control", placeholder="Enter project title") }}
<div class="form-group">
</div>
{{ form.description.label }}
<div class="form-group">
{{ form.description(class="form-control", placeholder="Enter project description") }}
{{ form.description.label }}
</div>
{{ form.description(class="form-control", placeholder="Enter project description") }}
<div class="form-group">
</div>
{{ form.submit(class="btn btn-primary") }}
<div class="form-group">
</div>
{{ form.submit(class="btn btn-primary") }}
 
</div>
 
{% endif %}
</form>
</form>
</body>
</body>
</html>
</html>
Loading