-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (91 loc) · 2.89 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="The greatest app for lottery">
<title>TGL - The greatest app for lottery</title>
<link rel="stylesheet" href="./src/styles/index.css">
</head>
<body>
<header class="main-header">
<div class="container">
<div class="logo-box">
<h1 class="main-header__logo">TGL</h1>
</div>
<nav class="main-header__nav">
<a href="/" class="main-header__nav-link">Home</a>
</nav>
<section class="main-header__actions">
<a class="actions__account" href="/">Account</a>
<button class="actions__log-out">
<span>Log out</span>
<i class="actions__log-out-icon"></i>
</button>
</section>
</div>
</header>
<main class="main-content">
<section class="choose-game">
<h2 class="main-content__heading">New bet <span>for <span data-js="bet-type-name">mega-sena</span></h2>
<h3 class="choose-game__heading">Choose a game</h3>
<ul data-js="game-type-button-container"></ul>
<div class="bet">
<h3 class="bet__title">Fill your bet</h3>
<p class="bet__description" data-js="bet-type-desc">
Mark as many numbers as you want up to a maximum of 50. Win by hitting 15, 16, 17, 18, 19, 20 or none of the 20 numbers drawn.
</p>
<div
class="bet__numbers-container"
data-js="numbers-range-container"
>
</div>
</div>
<div class="bet__actions">
<button
class="bet__actions-complete-game btn btn--border-sm btn__green--outline"
data-js="btn-complete-game"
>
Complete game
</button>
<button
class="bet__actions-clear-game btn btn--border-sm btn__green--outline"
data-js="btn-clear-game"
>
Clear game
</button>
<button
class="bet__actions-add-to-cart bet__actions-complete-game btn btn--border-sm btn__green"
data-js="btn-add-to-cart"
>
<i>
<img src="./src/assets/cart.svg" alt="">
</i>
Add to cart
</button>
</div>
</section>
<section class="cart">
<div class="cart__content">
<h2 class="cart__heading">Cart</h2>
<ul class="cart__items" data-js="cart-items-container">
</ul>
<p class="cart__total-value">
<span>Cart</span> total <span data-js="cart-total-amount"></span>
</p>
</div>
<button class="cart__action-save">
Save
<i class="cart__action-save-icon"></i>
</button>
</section>
</main>
<footer class="main-footer">
<p>
Copyright 2020 Luby Software
</p>
</footer>
<script src="./src/js/main.js" type="module"></script>
</body>
</html>