-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminProfile.html
More file actions
36 lines (34 loc) · 1.11 KB
/
adminProfile.html
File metadata and controls
36 lines (34 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<title>Luncher</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
</head>
<body>
<div class="nav">
<h2>Luncher<h2>
<button class="login">Login</button>
</div>
<div class="profile-wrap">
<div class="profile-info">
<!-- Possibly create an edit info button. -->
<h4>Admin Name</h4>
<span>email@email.com</span>
<span>Amount donated: $250</span>
</div>
<div class="profile-school-wrap">
<div class="profile-school-card">
<h2>School Name</h2>
<span>123 Address St. City, State</span>
<span>Donation Goal: $5000</span>
</div>
<div class="profile-school-card">
<h2>School Name</h2>
<span>123 Address St. City, State</span>
<span>Donation Goal: $5000</span>
</div>
</div>
</div>
</body>
</html>