-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew-organizer.php
More file actions
76 lines (58 loc) · 2.49 KB
/
new-organizer.php
File metadata and controls
76 lines (58 loc) · 2.49 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Organization Form</title>
<link rel="stylesheet" href="css/form.css" />
</head>
<body>
<main>
<h1>Create Organization</h1>
<form action="/submit" method="post" class="grid-form">
<fieldset>
<legend>Organization Details</legend>
<label for="name">Name *</label>
<input type="text" id="name" name="name" required />
<label for="description">Description</label>
<textarea id="description" name="description"></textarea>
<label for="contact_email">Contact Email</label>
<input type="email" id="contact_email" name="contact_email" />
<label for="contact_phone">Contact Phone</label>
<input type="tel" id="contact_phone" name="contact_phone" />
<label for="website_url">Website URL</label>
<input type="url" id="website_url" name="website_url" />
</fieldset>
<fieldset>
<legend>Address</legend>
<label for="street">Street</label>
<input type="text" id="street" name="street" />
<label for="house_number">House Number</label>
<input type="text" id="house_number" name="house_number" />
<label for="address_addition">Address Addition</label>
<input type="text" id="address_addition" name="address_addition" />
<label for="postal_code">Postal Code</label>
<input type="text" id="postal_code" name="postal_code" />
<label for="city">City</label>
<input type="text" id="city" name="city" />
<label for="state_code">State Code</label>
<input type="text" id="state_code" name="state_code" maxlength="2" />
<label for="country_code">Country Code</label>
<input type="text" id="country_code" name="country_code" />
</fieldset>
<fieldset>
<legend>Legal & Organizational</legend>
<label for="holding_organizer_id">Holding Organizer ID</label>
<input type="number" id="holding_organizer_id" name="holding_organizer_id" />
<label for="legal_form_id">Legal Form ID</label>
<input type="number" id="legal_form_id" name="legal_form_id" />
<label for="nonprofit">Nonprofit Organization</label>
<input type="checkbox" id="nonprofit" name="nonprofit" />
</fieldset>
<div class="form-actions">
<button type="submit">Submit</button>
</div>
</form>
</main>
</body>
</html>