-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorg_settings.html
72 lines (69 loc) · 3.62 KB
/
org_settings.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/utilities.css">
<link rel="stylesheet" href="./css/style.css">
<title>Volunteer Now | Change Organization Settings</title>
</head>
<body>
<header>
<div class="top">
<a class="logo" href="/volunteer-now/index.html">
<h1>Volunteer Now</h1>
</a>
<nav>
<ul class="nav">
<li><a href="/volunteer-now/organizations.html">Organizations</a></li>
<li><a href="/volunteer-now/create_event.html">Create Opportunity</a></li>
<div class="auth">
<li><a class="button-light" href="/volunteer-now/index.html">Logout</a></li>
</div>
</ul>
</nav>
</div>
<div class="hero">
<div class="hero-content">
<form action="/volunteer-now/dashboard_org.html" class="auth-form">
<h2 class="form-title">Change Organization Settings</span></h2>
<br>
<div class="input-group">
<label class="form-label input-group-label" for="Name">Name</label>
<input class="form-input input-left" type="text" placeholder="First name" />
<input class="form-input input-right" type="text" placeholder="Last name" />
</div>
<div class="input-group">
<label class="form-label input-group-label" for="Organization Name">Organization</label>
<input type="text" class="form-input" placeholder="Organization Name">
</div>
<div class="input-group">
<label class="form-label input-group-label" for="Address">Address</label>
<input class="form-input" type="text" placeholder="Address">
</div>
<div class="input-group">
<label class="form-label input-group-label" for="City">City/State/Zip</label>
<input class="form-input input-left" type="text" placeholder="City">
<input class="form-input input-center register-org-state" type="text" placeholder="State">
<input class="form-input input-right" type="text" placeholder="Zip">
</div>
<div class="input-group">
<label for="Email/Phone" class="form-label input-group-label">Email/Phone</label>
<input type="email" class="form-input input-left" placeholder="Email">
<input type="text" class="form-input input-right" placeholder="Phone">
</div>
<div class="input-group">
<label class="form-label input-group-label" for="Password">Password</label>
<input class="form-input" type="password" placeholder="Password">
</div>
<button class="button-dark form-button" type="submit">Save</button>
</form>
</div>
</div>
</header>
</body>
</html>