-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
55 lines (52 loc) · 2.19 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<title>MinesWeeper</title>
<link href="resources/images/shortcut.png" rel="shortcut icon">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="resources/css/style.css" rel="stylesheet">
</head>
<body>
<div class="container-fluid">
<h3>MinesWeeper!</h3>
<div class="row">
<div class="col-md-12">
<div class="col-md-2">
<div class="form-group">
<label for="level">Level:</label>
<select id="level" class="form-control"'>
<option value="1">Beginner</option>
<option value="2">Intermediate</option>
<option value="3">Expert</option>
</select>
</div>
<div class="form-group">
<label for="mines">Mines:</label>
<input type="text" readonly id="mines" class="form-control" style="width:80px;"/>
</div>
<input type="button" id="btnStart" class="btn btn-primary" value="Start!"/>
</div>
<div class="col-md-10">
<table id="board" readonly="true"></table>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="modalMessage" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-sm" role="document">
<div id="divMessage" role="alert">
<h5 id="messageModal" class="text-center"></h5>
</div>
</div>
</div>
</div>
<script src="resources/js/functions.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>