-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorganizationedit.html
49 lines (47 loc) · 1.78 KB
/
organizationedit.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
<!DOCTYPE html>
<html>
<head>
<title>ProfilePage</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter">
<link rel="stylesheet" href="css\organizationedit.css">
</head>
<body>
<header>
<div class="left">
<img src="Images/Helping Hands Logo.png"/>
<div class="logo-title">
<a> HELPING <span class="multicolorlogo">HANDS</span></a>
</div>
<div class="searchbar" >
<input type="text" placeholder="Search"/>
</div>
</div>
<div class="right">
<a href="#">Settings</a>
<a href="#">Notifcations</a>
<div class="img">
<img src="Images/HomeAid-National.png"/>
<div class="rating">4.8</div>
</div>
</div>
</header>
<div class="editprofile">
<h1>Edit Profile</h1>
</div>
<div class="container">
<form id="edit-profile-form" action="edit.php" method="POST" enctype="multipart/form-data">
<div class="first_box">
<input type="file" id="imgInp" name="imgImp" accept="image/*">
<img id="profilePic" src="Images/HomeAid-National.png"/>
</div>
<div class="second_box">
<h5>Description</h5>
<textarea style="resize:none" name="edit-description" placeholder="enter your description here..." cols="70" rows="8"></textarea>
</div>
<div class="overlap-12">
<input type="submit" name="submit" value="Save Changes" style="height:50px; width: 300px;">
</form>
</div>
<script src="js/volunteeredit.js"></script>
</body>
</html>