-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.html
More file actions
25 lines (18 loc) · 1.07 KB
/
Copy pathjoin.html
File metadata and controls
25 lines (18 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% include 'links.html'%}
{% include 'thome.html' %}
<div class="row-1"></div>
<div class="col-4"></div>
<div class="col-4 card p-20 ml-420">
<form action="/join_action">
<input type="hidden" name="project_id" value="{{project_id}}">
<input type="hidden" name="team_member_id" value="{{team_member_id}}">
<label for="project_title" class="form-label-1">Project Title</label>
<input type="text" class="form-control" id="project_title" name="project_title" value="{{project_title}}" >
<label for="description" class="form-label-1">Description</label>
<textarea class="form-control" id="description" name="description" rows="3"></textarea>
<label for="picture" class="form-label-1">Project Picture</label>
<input type="file" class="form-control" id="picture" name="picture" accept="image/*">
<button type="submit" class="btn-primary mt-10">Join Project</button>
</form>
</div>
<div class="col-4"></div>