-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
149 lines (122 loc) · 4.55 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Buyer Interface</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/datepicker3.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<link href="css/brand.css" rel="stylesheet">
<!--Icons-->
<script src="js/lumino.glyphs.js"></script>
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#sidebar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><span>Second</span>Harvest</a>
<ul class="user-menu">
<li class="dropdown pull-right">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><svg class="glyph stroked male-user"><use xlink:href="#stroked-male-user"></use></svg> User <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="profile.html"><svg class="glyph stroked male-user"><use xlink:href="#stroked-male-user"></use></svg> Profile</a></li>
<li><a href="#"><svg class="glyph stroked gear"><use xlink:href="#stroked-gear"></use></svg> Settings</a></li>
<li><a href="#"><svg class="glyph stroked cancel"><use xlink:href="#stroked-cancel"></use></svg> Logout</a></li>
</ul>
</li>
</ul>
</div>
</div><!-- /.container-fluid -->
</nav>
<div class="col-lg-8 col-lg-offset-2 main">
<div class="row">
<div class="col-lg-12 text-center">
<h1 class="page-header text-center">Welcome to Ada's Champion Page!</h1>
</div>
</div><!--/.row-->
<div class="row">
<div class="col-xs-6 text-center">
<img src="iconspng/GIRL.png" class="img-circle img-thumbnail img-responsive" style="max-width:40%">
</div>
<div class="text-center">
<button class="btn btn-primary btn-lg">SELL MORE TICKETS</button>
<br>
<img src="iconspng/bar.png" alt="" />
<p>
Ada is <strong>50%</strong> to reaching her goal
</p>
</div>
</div><!--/.row-->
<div class="row">
<div class="col-xs-6 col-xs-offset-1">
<p>
Champion: <strong>Ada Alekson</strong>
</p>
<p>
Champion Level: <strong>silver</strong> <img src="iconspng/graymask.png" alt="" style="max-height:30px; margin-left:10px"/>
</p>
<p>Comany: <strong>Starrise Enterprise</strong></p>
</div>
</div><!--/.row-->
<div class="row">
</div>
<div class="row" id="black">
<div class="col-xs-6 white">
<h3>
About Hero Raffle
</h3>
<p>
The Second Harvest Hero workplace fundraiser is a great way for your workplace to raise money to support people in need in your community. Fund raisers enable Seconf Harvest to rescue fresh, healthy surplus food.
</p>
</div>
<div class="col-xs-6">
<h3>Champion Levels</h3>
<ul>
<li><img src="iconspng/goldmask.png" alt="" style="max-height:20px; margin-left:10px"/> Golden - raised $1,000</li>
<li><img src="iconspng/graymask.png" alt="" style="max-height:20px; margin-left:10px"/> Silver - raised $500</li>
<li><img src="iconspng/greenmask.png" alt="" style="max-height:20px; margin-left:10px"/> Green - raised $250</li>
</ul>
</div>
</div><!--/.row-->
<div class="row">
<div class="text-center">
<button class="btn btn-primary btn-lg">MONITOR RAFFLE</button>
</div>
</div> <!--/.row-->
</div> <!--/.main-->
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/chart.min.js"></script>
<script src="js/chart-data.js"></script>
<script src="js/easypiechart.js"></script>
<script src="js/easypiechart-data.js"></script>
<script src="js/bootstrap-datepicker.js"></script>
<script>
$('#calendar').datepicker({
});
!function ($) {
$(document).on("click","ul.nav li.parent > a > span.icon", function(){
$(this).find('em:first').toggleClass("glyphicon-minus");
});
$(".sidebar span.icon").find('em:first').addClass("glyphicon-plus");
}(window.jQuery);
$(window).on('resize', function () {
if ($(window).width() > 768) $('#sidebar-collapse').collapse('show')
})
$(window).on('resize', function () {
if ($(window).width() <= 767) $('#sidebar-collapse').collapse('hide')
})
</script>
</body>
</html>