-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsafe.html
120 lines (106 loc) · 6.68 KB
/
safe.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
<!--link rel="stylesheet" href="./download-img/index_38d96b8.css"-->
<div class="app-content" style="">
<div ui-butterbar></div>
<a href class="off-screen-toggle hide" data-toggle="class:off-screen" data-target=".app-aside" ></a>
<div class="app-content-body fade-in-up">
<!-- COPY the content from "tpl/" -->
<div class="hbox hbox-auto-xs hbox-auto-sm" style="margin-bottom: 95px;">
<div class="col">
<div class="wrapper-md">
<div>
<div class="row">
<!--div class="col-sm-3">
</div-->
<div class="col-sm-12" style="margin-top:20px; width: 100%;">
<form name="pocketForm" class="form-horizontal form-validation">
<div class="panel panel-default">
<div class="panel-heading bg-light lter" style="text-align:left;">
<h2 style="margin-left:80px;"><strong>{{$root.translation.POCKET_TITLE}}</strong></h2>
</div>
<div class="panel-body">
<div class="form-group">
<label class="col-sm-1 control-label">{{$root.translation.POCKET_BALANCE}}</label>
<div class="col-sm-6">
<label class="control-label" style="float: left; margin-left: 30px;"> {{ $root.userInfo.user_balance | number }}</label>
</div>
</div>
<div class="line line-dashed b-b line-lg pull-in"></div>
<div class="form-group">
<label class="col-sm-1 control-label">{{$root.translation.POCKET_SAFE}}</label>
<div class="col-sm-6">
<label class="control-label" style="float: left; margin-left: 30px;"> {{ $root.userInfo.user_pocketmoney | number }}</label>
</div>
</div>
<div class="line line-dashed b-b line-lg pull-in"></div>
<div class="form-group">
<label class="col-sm-1 control-label">{{$root.translation.POCKET_MONEY}}</label>
<div class="col-sm-6">
<input type="text" class="form-control" placeholder="" ng-model="pocket_money" onkeypress='return event.charCode >= 48 && event.charCode <= 57' required >
</div>
</div>
<div class="line line-dashed b-b line-lg pull-in"></div>
</div>
<footer class="panel-footer bg-light lter" style="height:65px;">
<div class="col-sm-2">
<span class="text"><a ng-click="resetPocketPassword()"><em style="color:#58666e;text-decoration: underline;">{{$root.translation.POCKET_CHANGE_PASSWORD}}</em></a></span>
</div>
<div class="col-sm-10">
<button type="button" class="btn btn-info" style="margin-right:10px; float: none;" ng-click="sendPocketDeposit()" >{{$root.translation.POCKET_DRAW}}</button>
<button type="button" class="btn btn-info" style="margin-right:10px; float: none;" ng-click="sendPocketDraw()">{{$root.translation.POCKET_DEPOSIT}}</button>
<button type="reset" class="btn btn-info" style="float: none;">{{$root.translation.POCKET_RESET}}</button>
</div>
</footer>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- ----------------------------------------------- -->
<div class="col w-lg bg-light lter b-l bg-auto" ng-show="$root.is_logged" ng-controller="loadPageCtrl">
<div class="wrapper">
<div class="panel b-a" ng-show="$root.showNotices.length != 0">
<h4 class="font-thin padder"><a href class="text-info"><strong>Notice</strong></a></h4>
<ul class="list-group">
<li class="list-group-item" ng-repeat="one_notice in showNotices">
<p ng-click="showNoticeDetails()"><em><a style="text-decoration: underline;">{{ one_notice.show_m }}</a></em></p>
<small class="block text-muted"><i class="fa fa-fw fa-clock-o"></i> {{ one_notice.time }}</small>
</li>
</ul>
</div>
<div class="panel b-a">
<h4 class="font-thin padder"><a href class="text-info"><strong>News</strong></a></h4>
<ul class="list-group">
<li class="list-group-item" ng-repeat="one_news in showNews">
<p ng-click="showNewsDetails(one_news)"><em><a style="text-decoration: underline;">{{ one_news.show_m }}</a></em></p>
<small class="block text-muted"><i class="fa fa-fw fa-clock-o"></i>{{ one_news.time }}</small>
</li>
</ul>
</div>
</div>
</div>
<!-- ----------------------------------------------- -->
</div>
<div style="background: #271e1f; width: 100%; margin-top: 50px;">
<div style="display: table; margin: 0 auto; color: #c0bebe; padding-top: 28px; padding-right: 30px; padding-left: 30px;">
<p>{{$root.translation.ABOUT_US_TITLE}}<br/>
{{$root.translation.ABOUT_US_CONTENT1}}<br/>
{{$root.translation.ABOUT_US_CONTENT2}}<br/>
{{$root.translation.ABOUT_US_CONTENT3}}<br/>
{{$root.translation.ABOUT_US_CONTENT4}}<br/>
{{$root.translation.ABOUT_US_CONTENT5}}<br/>
</p>
</div>
<center>
<img src="img/footerLogo.png" style="width: 100%;" />
</center>
<div style="display: table; margin: 0 auto; color: #c0bebe; text-align: center;">
<p>{{$root.translation.ABOUT_US_CONTENT6}}<br/>
{{$root.translation.ABOUT_US_CONTENT7}}<br/>
</p>
</div>
</div>
<!-- PASTE above -->
</div>
</div>