-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_proj.html
55 lines (51 loc) · 1.82 KB
/
create_proj.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<title>Create Project</title>
<link href="http://getbootstrap.com/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="create_prof.css" rel="stylesheet">
</head>
<body>
<form action="/submit_project" method="POST">
<div class="container">
<h2>Create Project</h2>
Organization Name:<br>
<input type="text" name="orgname" placeholder="Organization Name"><br>
Headquarter Location:<br>
<input type="text" name="location" placeholder="Location"><br>
Mission and Goals:<br>
<input type="text" name="mission" placeholder="Mission and Goals"><br>
Topic:<br>
<div class="options">
<input type="radio" name="topics"> Gender Justice<br>
<input type="radio" name="topics"> LGBTQ Justice<br>
<input type="radio" name="topics"> Natural Disaster Relief<br>
<input type="radio" name="topics"> Refugees<br>
<input type="radio" name="topics"> Environment<br>
<input type="radio" name="topics"> Maternal Care<br>
<input type="radio" name="topics"> Infectious Disease<br>
<input type="radio" name="topics"> Malnutrition<br>
</div>
Leadership:<br>
<input type="text" name="leadership" placeholder="Leadership"><br>
Budget: <br>
<input type="text" name="budget" placeholder="Budget"><br>
Website:<br>
<input type="text" name="website" placeholder="Website URL"><br>
Needs:<br>
<input type="text" name="needs" placeholder="List needs"><br>
Offers: <br>
<input type="text" name="offers" placeholder="List resources"><br>
Size (# of employees): <br>
<input type="text" name="size" placeholder="Size"><br><br>
<input type="submit" value="Submit">
</div>
</form>
<div class="container">
<form action = "index.html">
<input type="submit" value="Cancel">
</form>
</div>
</body>
<!--<a href="home.html">Cancel</a>-->
</html>