forked from shafiul/minesweeper
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbug.html
More file actions
38 lines (27 loc) · 1.26 KB
/
bug.html
File metadata and controls
38 lines (27 loc) · 1.26 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
<html>
<head>
<title>Minesweeper - The Open Web HTML5 Game!</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="scripts/jquery.js" ></script>
<script src="scripts/common.js" ></script>
<script src="scripts/jquery.mobile-1.2.0.js" ></script>
<link rel="stylesheet" href="style/jquery.mobile-1.2.0.css" type="text/css" />
</head>
<body>
<div data-role="page" data-theme="c">
<div data-role="header" >
<a href="index.html" data-icon="home">Home</a>
<h1>Bug Report</h1>
</div><!-- /header -->
<div data-role="content">
This is an alpha release of the full version, so no doubt you will find bugs! Soon
this page will have a form to submit bugs directly. Till then, please use the
<a href="https://github.com/playnow/mines/issues">GitHub Issues</a> page to report bugs.
<br />
<br />
We request you to submit any bugs you come across :-)
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>