-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_prof.html
More file actions
60 lines (56 loc) · 1.97 KB
/
create_prof.html
File metadata and controls
60 lines (56 loc) · 1.97 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
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
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<title>Create Profile</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_profile" method="POST">
<div class="container">
<h2>Create Profile</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>
Type: <br>
<div class="options">
<input type="radio" name="types"> For-Profit<br>
<input type="radio" name="types"> NGO<br>
<input type="radio" name="types"> Corporate Social Repsonsibility<br>
<input type="radio" name="types"> Foundation<br>
</div>
Leadership:<br>
<input type="text" name="leadership" placeholder="Leadership"><br>
History:<br>
<input type="text" name="history" placeholder="History"><br>
Website:<br>
<input type="text" name="website" placeholder="Website URL"><br>
Email Address:<br>
<input type="text" name="contact" placeholder="Email"><br><br>
<form action="profile.html">
<input type="submit" value="Submit">
</form>
</div>
</form>
<div class="container">
<form action = "index.html">
<input type="submit" value="Cancel">
</form>
</div>
</body>
<!--<a href="home.html">Cancel</a>-->
</html>