-
Notifications
You must be signed in to change notification settings - Fork 0
/
event_detail.html
114 lines (65 loc) · 3.36 KB
/
event_detail.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
<!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">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="description" content="">
<meta name="author" content="">
<title>TEAM BUILDER</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/customize.css">
<link rel="stylesheet" type="text/css" href="css/event_detail.css">
<link rel="stylesheet" type="text/css" href="css/page_transition.css">
</head>
<body>
<div id="wrapper">
<!-- Navigation -->
<nav class="navbar navbar-inverse" role="navigation">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a href="events.html"><button type="button" id="main_menu_btn" class="glyphicon glyphicon-chevron-left"></button></a>
<div id="nav_title">EVENT DETAIL</div>
</div>
</nav>
<!-- Page Content -->
<div class="page_content">
<div id="team_profile">
<div class="team_info">
<div class="team_logo"><img src="img/team_logo/02.png" alt=""></div>
<div class="team_name" id="team_name">Manchester</div>
<div class="team_star">
<div class="glyphicon glyphicon-star-empty"></div>
<div class="glyphicon glyphicon-star-empty"></div>
<div class="glyphicon glyphicon-star-empty"></div>
<div class="glyphicon glyphicon-star-empty"></div>
<div class="glyphicon glyphicon-star-empty"></div>
</div>
<div class="team_status" id="team_status"><span>spots </span>04/15</div>
</div>
<div class="team_content">
<div class="event_title">Event Brief</div>
<p>
We need one striker to join the game on Dec 12th in San Francisco.
We need one striker to join the game on Dec 12th in San Francisco.
We need one striker to join the game on Dec 12th in San Francisco.
We need one striker to join the game on Dec 12th in San Francisco.
We need one striker to join the game on Dec 12th in San Francisco.
We need one striker to join the game on Dec 12th in San Francisco.
</p>
</div>
<button type="button" class="button-style-2 button-style-s join_event">join</button>
</div>
</div>
</div>
<!-- jQuery Version 1.11.1 -->
<script src="js/jquery.js"></script>
<script src="http://www.parsecdn.com/js/parse-1.6.4.min.js"></script>
<script src="js/login.js"></script>
<!-- Bootstrap Core JavaScript-->
<script src="js/bootstrap.min.js"></script>
</body>
</html>