detail.ejs
4.68 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
<title>PUBG 핵쟁이</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<style>
body { background: url('../public/image/bg2.jpg') no-repeat fixed 50% 50%/100% 100%;}
#con{
padding-top:30%;
}
h1{
color: rgb(255,255,255);
text-align: center;
}
#info{
width: 100%;
height: 50px;
color : rgb(255,255,255);
font-size: 12pt;
text-align: center;
}
.fth{
width : 25%;
}
#result{
border: 1px none;
font-size: 20pt;
}
</style>
</head>
<body>
<div class="container" >
<div class = "row">
<div class ="col-sm-12">
<h1><%= id %></h1>
<br>
<br>
</div>
</div>
<div class="row">
<div class ="col-sm-12">
<table id = "info">
<tr>
<th><img src="../public/image/round.png">총 플레이한 라운드</th>
<th><%= result['round'] %></th>
<th><img src="../public/image/chi.png">치킨 뜯은 횟수</th>
<th><%= result['wins'] %></th>
<th><img src="../public/image/top10.png">TOP 10 에 든 횟수</th>
<th><%= result['top10'] %></th>
</tr>
<tr><th><br></th></tr>
<tr>
<th><img src="../public/image/lose.png">패배한 횟수</th>
<th><%= result['lose'] %></th>
<th><img src="../public/image/rate.png">현재 레이팅</th>
<th><%= result['rating'] %></th>
<th><img src="../public/image/best.png">최고 레이팅</th>
<th><%= result['bestrate'] %></th>
</tr>
<tr><th><br></th></tr>
<tr>
<th><img src="../public/image/deal.png">게임 당 딜량</th>
<th><%= result['dmg'] %></th>
<th><img src="../public/image/head1.png">게임 당 헤드샷 비율</th>
<th><%= result['head'] %></th>
<th><img src="../public/image/heal.png">게임당 치료량</th>
<th><%= result['heal'] %></th>
</tr>
<tr><th><br></th></tr>
<tr>
<th><img src="../public/image/kill1.png">게임 당 킬량</th>
<th><%= result['kill'] %></th>
<th><img src="../public/image/distance.png">게임 당 이동거리</th>
<th><%= result['distance'] %></th>
<th><img src="../public/image/revive.png">게임 당 부활횟수</th>
<th><%= result['revive'] %></th>
</tr>
<tr><th><br></th></tr>
<tr>
<th><img src="../public/image/road.png">게임 당 로드킬 횟수</th>
<th><%= result['road'] %></th>
<th><img src="../public/image/teamkill.png">게임 당 팀킬 횟수</th>
<th><%= result['team'] %></th>
<th><img src="../public/image/time.png">게임 당 생존시간</th>
<th><%= result['survive'] %></th>
</tr>
<tr><th><br></th></tr>
<tr>
<th><img src="../public/image/long.png">가장 멀리서 죽인 거리</th>
<th><%= result['long'] %></th>
</tr>
</table>
<br>
</div>
</div>
<div class = "row">
<div class ="col-sm-4">
<form action="/compare" method="get" >
<input type="hidden" name="id" value="<%= id %>">
<input type="hidden" name="mode" value="<%= mode %>">
<input type="hidden" name="region" value="<%= region %>">
<div class="input-group">
<input type="text" class="form-control input-sm" placeholder="Search for..." name = "id2">
<span class="input-group-btn">
<button class="btn btn-default btn-sm" type="submit">다른사람과비교</button>
</span>
</div>
</form>
</div>
</div>
<div class = "row">
<div class ="col-sm-12">
<form action="/" method="get" >
<br>
<button class="btn btn-default btn-sm" type="submit">홈으로 가기</button>
</form>
<br>
<br>
</div>
</div>
</div>
</body>
</html>