-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.php
More file actions
executable file
·233 lines (207 loc) · 10.2 KB
/
template.php
File metadata and controls
executable file
·233 lines (207 loc) · 10.2 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<?php include 'lib.php';
htmlHeader("Contests");
htmlBanner();
?>
<!-- We are in the body tag of this html file now! -->
<div class="wrap">
<?php htmlSidebar(); ?>
<div class="content">
<div class="contests">
<h2><a href="#">图像分类</a></h2>
<div class="contest">
<div class="contest-abstract">
比赛的摘要.
</div>
<div class="clearFloat"></div>
<a href="#" class="contest-more">详情>></a>
</div>
<div class="clearFloat"></div>
<!-- <h2></h2> -->
<br />
<div>
<!-- Nav tabs -->
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active"><a href="#home" aria-controls="home" role="tab" data-toggle="tab">Home</a></li>
<li role="presentation"><a href="#profile" aria-controls="profile" role="tab" data-toggle="tab">Profile</a></li>
<li role="presentation"><a href="#messages" aria-controls="messages" role="tab" data-toggle="tab">Messages</a></li>
<li role="presentation"><a href="#settings" aria-controls="settings" role="tab" data-toggle="tab">Settings</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="home"><br /><br /></div>
<div role="tabpanel" class="tab-pane" id="profile"><br /></div>
<div role="tabpanel" class="tab-pane" id="messages">...</div>
<div role="tabpanel" class="tab-pane" id="settings">...</div>
</div>
</div>
<div class="clearFloat"></div>
<table class="table table-hover">
<tr>
<th>header</th>
<th>header</th>
<th>header</th>
<th>header</th>
<th>header</th>
</tr>
<!-- On rows -->
<!-- <tr class="active">...</tr>
<tr class="success">...</tr>
<tr class="warning">...</tr>
<tr class="danger">...</tr>
<tr class="info">...</tr> -->
<!-- On cells (`td` or `th`) -->
<tr>
<td class="active">...</td>
<td class="success">...</td>
<td class="warning">...</td>
<td class="danger">...</td>
<td class="info">...</td>
</tr>
</table>
<div class="clearFloat"></div>
<form>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
</div>
<div class="form-group">
<label for="exampleInputFile">File input</label>
<input type="file" id="exampleInputFile">
<p class="help-block">Example block-level help text here.</p>
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Check me out
</label>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
Launch demo modal
</button>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Modal title</h4>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
<div class="clearFloat"></div>
<div class="dropdown">
<button id="dLabel" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Dropdown trigger
<!-- <span class="caret"></span> -->
</button>
<ul class="dropdown-menu" aria-labelledby="dLabel">
...
</ul>
</div>
<p>Some Bootstrap icons:</p>
<i class="glyphicon glyphicon-cloud"></i>
<i class="glyphicon glyphicon-remove"></i>
<i class="glyphicon glyphicon-user"></i>
<i class="glyphicon glyphicon-envelope"></i>
<i class="glyphicon glyphicon-thumbs-up"></i>
<br><br>
<p>Styled Bootstrap icons (size, color, and shadow):</p>
<i class="glyphicon glyphicon-cloud" style="font-size:24px;"></i>
<i class="glyphicon glyphicon-cloud" style="font-size:36px;"></i>
<span class="glyphicon glyphicon-cloud" style="font-size:36px;"></span>
<i class="glyphicon glyphicon-cloud" style="font-size:48px;color:red;"></i>
<i class="glyphicon glyphicon-cloud" style="font-size:60px;color:lightblue;text-shadow:2px 2px 4px #000000;"></i>
<button type="button" class="btn btn-default" data-container="body" data-toggle="popover" data-placement="right" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">
Popover on right
</button>
<br />
<div class="clearFloat"></div>
</div>
</div>
</div>
<?php htmlFooter(); ?>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1">
<div class="modal-dialog"<!-- role="document" --> >
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span></button>
<!-- Log In and Register Panel -->
<ul class="nav nav-tabs">
<li class="active"><a href="#sign-in" data-toggle="tab">Sign In</a></li>
<li ><a href="#sign-up" data-toggle="tab">Register</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div class="tab-pane fade in active" id="sign-in">
<div class="panel-body">
<form action="./usermanager.php?action=0" method="post" onsubmit="return checkSignin()">
<div class="form-group">
<label for="emailLogin">Email address</label>
<input type="email" class="form-control" id="emailLogin" name="emailLogin" placeholder="Email">
</div>
<div class="form-group">
<label for="passwordLogin">Password</label>
<input type="password" class="form-control" id="passwordLogin" name="passwdLogin" placeholder="Password">
</div>
<button type="submit" class="btn btn-default" >Submit</button>
</form>
</div>
</div>
<div class="tab-pane fade" id="sign-up">
<div class="panel-body">
<form action="./usermanager.php?action=1" method="post" onsubmit="return checkSignup()">
<!-- <div class="form-group">
<span class="redFont">注意</span>: 用户名不要超过30个字符!
</div> -->
<div class="form-group">
<label for="nameRegister">Nickname</label>
<input type="text" class="form-control" name="nameRegister" id="nameRegister" placeholder="Nickname">
</div>
<div class="form-group">
<label for="emailRegister">Email Address</label>
<input type="email" class="form-control" name="emailRegister" id="emailRegister" placeholder="Email">
</div>
<div class="form-group">
<label for="passwordRegister">Password</label>
<input type="password" class="form-control" name="passwordRegister" id="passwordRegister" placeholder="Password">
</div>
<div class="form-group">
<label for="password2Register">Password Again</label>
<input type="password" class="form-control" id="password2Register" placeholder="Password Again">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<h2 onclick="atest('myModal')">MNIST</h2>
<div class="contest">
<div class="contest-abstract">
<p>
You have some experience with R or Python and machine learning basics, but you’re new to computer vision. This competition is the perfect introduction to techniques like neural networks using a classic dataset including pre-extracted features.</p><p>
MNIST ("Modified National Institute of Standards and Technology") is the de facto “hello world” dataset of computer vision. Since its release in 1999, this classic dataset of handwritten images has served as the basis for benchmarking classification algorithms. As new machine learning techniques emerge, MNIST remains a reliable resource for researchers and learners alike.</p><p>
In this competition, your goal is to correctly identify digits from a dataset of tens of thousands of handwritten images. We’ve curated a set of tutorial-style kernels which cover everything from regression to neural networks. We encourage you to experiment with different algorithms to learn first-hand what works well and how techniques compare.</p>
</div>
</div>
<div class="clearFloat"></div>
<a href="#." onclick="atest('myModal')" class="contest-more">详情>></a>
<div class="clearFloat"></div>