-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcriptomoedas.php
58 lines (54 loc) · 2.21 KB
/
criptomoedas.php
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
<?php
session_start();
if(isset($_SESSION['msg']))
{
echo $_SESSION['msg'];
unset($_SESSION['msg']);
}
if(!isset($_SESSION['logado']))
{
header('location:login.php');
}
include_once('includes/logica/conecta.php');
include_once('includes/componentes/cabecalho.php');
require_once('includes/componentes/header.php');
include_once('includes/logica/functions.php');
?>
<body class="container-fluid">
<main id="crypto">
<section>
<div class="titulo">
<h1>Criptomoedas</h1>
</div>
</section>
<section>
<div id="chart">
<div class="tradingview-widget-container">
<div class="tradingview-widget-container__widget"></div>
<script type="text/javascript" src="https://s3.tradingview.com/external-embedding/embed-widget-screener.js" async/>
{
"width": "100%",
"height": 550,
"defaultColumn": "overview",
"screener_type": "crypto_mkt",
"displayCurrency": "USD",
"colorTheme": "dark",
"locale": "br",
"isTransparent": true
}
</script>
</div>
</div>
</section>
<section class="container" id="iframe">
<div>
<iframe width="840" height="515" border-radius="1rem" src="https://www.youtube.com/embed/_-DtYSm3FBw?si=OFOhUcwqytExh2DW" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen id="video"></iframe>
</div>
</section>
</main>
<?php
include_once('includes/componentes/footer.php');
?>
<script type="text/javascript" src="js/scripts.js"></script>
</body>
</html>