-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
100 lines (93 loc) · 4.08 KB
/
profile.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Profile</title>
<meta name="viewport" content="width=device-width">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<link rel="stylesheet" href="css/profile.css">
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- Google Maps JavaScript API -->
<script src="https://www.google.com/jsapi"></script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript"></script>
<script src="js/profile.js"></script>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
<i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="#page-top">
<span class="light">Miracle</span>
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<!-- Hidden li included to remove active class from about link when scrolled up past about section -->
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="index.html">Today</a>
</li>
<li>
<a class="page-scroll" href="profile.html" style="border-bottom: 2px solid #FFFFFF">My Impact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Intro Header -->
<header class="intro">
<div class="intro-body">
<div class="container">
<!-- Total Donation & Total Projected Donated To -->
<div class="row">
<div class="col-md-6" style="text-align: right">
<h1 class="headings">$78</h1>
<p1 class="p1">donated</p1>
</div>
<div class="col-md-1" style="text-align: left">
<h1 class="headings">03</h1>
<p1 class="p1">projects</p1>
</div>
</div>
<br />
<!-- History of Donations -->
<div class="row">
<div class="col-md-4" style="text-align: right">
<span class="glyphicon glyphicon-grain glyphicon-large"></span>
</div>
<div class="col-md-8">
<p class="p2">$<b>42</b> to <b>Hurricane Relief</b> for <b>Haiti</b></p>
<p class="p2">$<b>23</b> to <b>Childhood Malnutrition Prevention</b> for <b>Ethiopia</b></p>
<p class="p2">$<b>12</b> to <b>Malaria Nets</b> for <b>Sub-Saharan Africa</b></p>
</div>
</div>
<!-- Full History of Donations -->
<div class="row">
<div class="col-md-12">
<span class="glyphicon glyphicon-chevron-down glyphicon-medium"></span>
</div>
<br /><br /><br / />
<!-- Google GeoMap of Regions Donated To -->
<center><div class="chart_div" style="width: 750px; height: 375px;"></div></center>
</div>
</div>
</div>
<!-- /.header -->
</header>
</body>
</html>