-
Notifications
You must be signed in to change notification settings - Fork 1
/
lose.html
70 lines (69 loc) · 2.39 KB
/
lose.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
<!DOCTYPE html>
<html lang="en" class="mdl-js">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="assets/favicon.ico" rel="icon">
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/styles.css" rel="stylesheet">
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<title>Codebreaker Web</title>
<body>
<section id="introduction">
<div class="container">
<div class="row fill-viewport align-items-center justify-content-center">
<div class="col-12 col-md-6">
<div class="row">
<div class="col-md-auto">
<h1 class="text-white title inline-block">Codebreaker 2018</h1>
</div>
</div>
<div class="row">
<div class="col button">
<button type="button" class="btn btn-primary" disabled>
Level:
<span class="badge badge-light">
Middle
</span>
</button>
<button type="button" class="btn btn-primary" disabled>
Attempts Left:
<span class="badge badge-light">
0/8
</span>
</button>
<button type="button" class="btn btn-primary" disabled>
Hints Left:
<span class="badge badge-light">
1/3
</span>
</button>
</div>
</div>
<hr class="mb-4">
<div class="row">
<div class="text-center">
<div class="text-center">
<h3 class="text-white">
Oops, NAME! You lose the game!
</h3>
<h4 class="text-white">
The code was
<strong>1553</strong>
</h4>
</div>
<img src="assets/images/lost.gif" class="img-fluid" alt="You lose the game!">
</div>
</div>
<hr class="mb-4">
<a class="btn btn-primary btn-lg" href="#" role="button">
Play again!
</a>
<a class="btn btn-success btn-lg float-right" href="#" role="button">
Statistics
</a>
</div>
</div>
</section>
</body>
</html>