added full project
1
coingecko.json
Normal file
44
coingecko.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?php
|
||||
//echo "<h1>coingecko.com</h1>";
|
||||
|
||||
// Die Standard-Zeitzone, die verwendet werden soll, setzen.
|
||||
date_default_timezone_set('Europe/Berlin');
|
||||
|
||||
// Holt den letzten Wert für die if Abfrage
|
||||
$xmrdatas = json_decode(file_get_contents("coingecko.json"), true);
|
||||
|
||||
// Liefert den aktuellen Unix-Zeitstempel
|
||||
$zeit = time();
|
||||
|
||||
// Sind ~30 Minuten vergangen?
|
||||
if(($zeit - $xmrdatas['time']) >= 5){
|
||||
//echo "Gespeicherte Zeit: ".$xmrdatas['time']."<br/>Aktuelle Zeit: ".$zeit;
|
||||
|
||||
// API key
|
||||
//$access_key = 'xxx';
|
||||
|
||||
// Initialize CURL
|
||||
//$ch = curl_init('https://min-api.cryptocompare.com/data/price?api_key='.$access_key.'&fsym=XMR&tsyms=BTC,USDT,ETH,USD,EUR,LTC,BCH,GBP,DOGE,USDC,DASH,CNY,BNB,RUB,UAH,KRW,TUSD,DAI,JPY,WAVES,INR,BUSD,BRL,PLN,UNO,FTC,NZDT,DOTC,EOS,HITBITC,EURS,SAI,EURN,BNT,NANO,XLM,XRP,KNC,ZEC,OMG,BITUSD,BITCNY,BTS,RUR,QC,XQR,TRY,CHFT,CHF,SGD,HKD,PAX,AED,MYR,CAD,AUD,IDR,ZAR');
|
||||
$ch = curl_init('https://api.coingecko.com/api/v3/simple/price?ids=monero&vs_currencies=btc%2Ceth%2Cltc%2Cbch%2Cbnb%2Ceos%2Cxrp%2Cxlm%2Clink%2Cdot%2Cyfi%2Cusd%2Caed%2Cars%2Caud%2Cbdt%2Cbhd%2Cbmd%2Cbrl%2Ccad%2Cchf%2Cclp%2Ccny%2Cczk%2Cdkk%2Ceur%2Cgbp%2Chkd%2Chuf%2Cidr%2Cils%2Cinr%2Cjpy%2Ckrw%2Ckwd%2Clkr%2Cmmk%2Cmxn%2Cmyr%2Cngn%2Cnok%2Cnzd%2Cphp%2Cpkr%2Cpln%2Crub%2Csar%2Csek%2Csgd%2Cthb%2Ctry%2Ctwd%2Cuah%2Cvef%2Cvnd%2Czar%2Cxdr%2Cxag%2Cxau%2Cbits%2Csats&include_market_cap=true&include_24hr_vol=true&include_24hr_change=true&include_last_updated_at=true');
|
||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
||||
|
||||
// Store the data:
|
||||
$json = curl_exec($ch);
|
||||
curl_close($ch);
|
||||
|
||||
// Sortiert/Formatiert die Ausgabe
|
||||
$sort_array = json_decode($json, true);
|
||||
$new_sort_array = $sort_array['monero'];
|
||||
// Zeit wird ergänzt
|
||||
$new_sort_array['time'] = $zeit;
|
||||
|
||||
// Werte in die .json gespeichert
|
||||
file_put_contents("coingecko.json", json_encode($new_sort_array));
|
||||
|
||||
// echo "<br/>Sync.<hr/>";
|
||||
|
||||
}//else{
|
||||
//echo "Keine Daten, noch zu früh!<br/><br/>";
|
||||
//echo "Gespeicherte Zeit: ".$xmrdatas['time']."<br/>Aktuelle Zeit: ".$zeit."<br/><br/>Differenz: ".$zeit - $xmrdatas['time']."<br/><hr/>";
|
||||
//}
|
||||
?>
|
5051
css/bootstrap-grid.css
vendored
Normal file
1
css/bootstrap-grid.css.map
Normal file
7
css/bootstrap-grid.min.css
vendored
Normal file
1
css/bootstrap-grid.min.css.map
Normal file
5050
css/bootstrap-grid.rtl.css
vendored
Normal file
1
css/bootstrap-grid.rtl.css.map
Normal file
7
css/bootstrap-grid.rtl.min.css
vendored
Normal file
1
css/bootstrap-grid.rtl.min.css.map
Normal file
485
css/bootstrap-reboot.css
vendored
Normal file
|
@ -0,0 +1,485 @@
|
|||
/*!
|
||||
* Bootstrap Reboot v5.1.3 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2021 The Bootstrap Authors
|
||||
* Copyright 2011-2021 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||
*/
|
||||
:root {
|
||||
--bs-blue: #0d6efd;
|
||||
--bs-indigo: #6610f2;
|
||||
--bs-purple: #6f42c1;
|
||||
--bs-pink: #d63384;
|
||||
--bs-red: #dc3545;
|
||||
--bs-orange: #fd7e14;
|
||||
--bs-yellow: #ffc107;
|
||||
--bs-green: #198754;
|
||||
--bs-teal: #20c997;
|
||||
--bs-cyan: #0dcaf0;
|
||||
--bs-white: #fff;
|
||||
--bs-gray: #6c757d;
|
||||
--bs-gray-dark: #343a40;
|
||||
--bs-gray-100: #f8f9fa;
|
||||
--bs-gray-200: #e9ecef;
|
||||
--bs-gray-300: #dee2e6;
|
||||
--bs-gray-400: #ced4da;
|
||||
--bs-gray-500: #adb5bd;
|
||||
--bs-gray-600: #6c757d;
|
||||
--bs-gray-700: #495057;
|
||||
--bs-gray-800: #343a40;
|
||||
--bs-gray-900: #212529;
|
||||
--bs-primary: #0d6efd;
|
||||
--bs-secondary: #6c757d;
|
||||
--bs-success: #198754;
|
||||
--bs-info: #0dcaf0;
|
||||
--bs-warning: #ffc107;
|
||||
--bs-danger: #dc3545;
|
||||
--bs-light: #f8f9fa;
|
||||
--bs-dark: #212529;
|
||||
--bs-primary-rgb: 13, 110, 253;
|
||||
--bs-secondary-rgb: 108, 117, 125;
|
||||
--bs-success-rgb: 25, 135, 84;
|
||||
--bs-info-rgb: 13, 202, 240;
|
||||
--bs-warning-rgb: 255, 193, 7;
|
||||
--bs-danger-rgb: 220, 53, 69;
|
||||
--bs-light-rgb: 248, 249, 250;
|
||||
--bs-dark-rgb: 33, 37, 41;
|
||||
--bs-white-rgb: 255, 255, 255;
|
||||
--bs-black-rgb: 0, 0, 0;
|
||||
--bs-body-color-rgb: 33, 37, 41;
|
||||
--bs-body-bg-rgb: 255, 255, 255;
|
||||
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
||||
--bs-body-font-family: var(--bs-font-sans-serif);
|
||||
--bs-body-font-size: 1rem;
|
||||
--bs-body-font-weight: 400;
|
||||
--bs-body-line-height: 1.5;
|
||||
--bs-body-color: #212529;
|
||||
--bs-body-bg: #fff;
|
||||
}
|
||||
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: no-preference) {
|
||||
:root {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: var(--bs-body-font-family);
|
||||
font-size: var(--bs-body-font-size);
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
color: var(--bs-body-color);
|
||||
text-align: var(--bs-body-text-align);
|
||||
background-color: var(--bs-body-bg);
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
hr {
|
||||
margin: 1rem 0;
|
||||
color: inherit;
|
||||
background-color: currentColor;
|
||||
border: 0;
|
||||
opacity: 0.25;
|
||||
}
|
||||
|
||||
hr:not([size]) {
|
||||
height: 1px;
|
||||
}
|
||||
|
||||
h6, h5, h4, h3, h2, h1 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0.5rem;
|
||||
font-weight: 500;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: calc(1.375rem + 1.5vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: calc(1.325rem + 0.9vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: calc(1.3rem + 0.6vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h3 {
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: calc(1.275rem + 0.3vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h4 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
abbr[title],
|
||||
abbr[data-bs-original-title] {
|
||||
-webkit-text-decoration: underline dotted;
|
||||
text-decoration: underline dotted;
|
||||
cursor: help;
|
||||
-webkit-text-decoration-skip-ink: none;
|
||||
text-decoration-skip-ink: none;
|
||||
}
|
||||
|
||||
address {
|
||||
margin-bottom: 1rem;
|
||||
font-style: normal;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul {
|
||||
padding-left: 2rem;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul,
|
||||
dl {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
ol ol,
|
||||
ul ul,
|
||||
ol ul,
|
||||
ul ol {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
dt {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin-bottom: 0.5rem;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 0.875em;
|
||||
}
|
||||
|
||||
mark {
|
||||
padding: 0.2em;
|
||||
background-color: #fcf8e3;
|
||||
}
|
||||
|
||||
sub,
|
||||
sup {
|
||||
position: relative;
|
||||
font-size: 0.75em;
|
||||
line-height: 0;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0d6efd;
|
||||
text-decoration: underline;
|
||||
}
|
||||
a:hover {
|
||||
color: #0a58ca;
|
||||
}
|
||||
|
||||
a:not([href]):not([class]), a:not([href]):not([class]):hover {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
pre,
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: var(--bs-font-monospace);
|
||||
font-size: 1em;
|
||||
direction: ltr /* rtl:ignore */;
|
||||
unicode-bidi: bidi-override;
|
||||
}
|
||||
|
||||
pre {
|
||||
display: block;
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
overflow: auto;
|
||||
font-size: 0.875em;
|
||||
}
|
||||
pre code {
|
||||
font-size: inherit;
|
||||
color: inherit;
|
||||
word-break: normal;
|
||||
}
|
||||
|
||||
code {
|
||||
font-size: 0.875em;
|
||||
color: #d63384;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
a > code {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
kbd {
|
||||
padding: 0.2rem 0.4rem;
|
||||
font-size: 0.875em;
|
||||
color: #fff;
|
||||
background-color: #212529;
|
||||
border-radius: 0.2rem;
|
||||
}
|
||||
kbd kbd {
|
||||
padding: 0;
|
||||
font-size: 1em;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
figure {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
img,
|
||||
svg {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
table {
|
||||
caption-side: bottom;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
caption {
|
||||
padding-top: 0.5rem;
|
||||
padding-bottom: 0.5rem;
|
||||
color: #6c757d;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: inherit;
|
||||
text-align: -webkit-match-parent;
|
||||
}
|
||||
|
||||
thead,
|
||||
tbody,
|
||||
tfoot,
|
||||
tr,
|
||||
td,
|
||||
th {
|
||||
border-color: inherit;
|
||||
border-style: solid;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
button {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
button:focus:not(:focus-visible) {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
input,
|
||||
button,
|
||||
select,
|
||||
optgroup,
|
||||
textarea {
|
||||
margin: 0;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
[role=button] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
select {
|
||||
word-wrap: normal;
|
||||
}
|
||||
select:disabled {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
[list]::-webkit-calendar-picker-indicator {
|
||||
display: none;
|
||||
}
|
||||
|
||||
button,
|
||||
[type=button],
|
||||
[type=reset],
|
||||
[type=submit] {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
button:not(:disabled),
|
||||
[type=button]:not(:disabled),
|
||||
[type=reset]:not(:disabled),
|
||||
[type=submit]:not(:disabled) {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
legend {
|
||||
float: left;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin-bottom: 0.5rem;
|
||||
font-size: calc(1.275rem + 0.3vw);
|
||||
line-height: inherit;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
legend {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
legend + * {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
::-webkit-datetime-edit-fields-wrapper,
|
||||
::-webkit-datetime-edit-text,
|
||||
::-webkit-datetime-edit-minute,
|
||||
::-webkit-datetime-edit-hour-field,
|
||||
::-webkit-datetime-edit-day-field,
|
||||
::-webkit-datetime-edit-month-field,
|
||||
::-webkit-datetime-edit-year-field {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
::-webkit-inner-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
[type=search] {
|
||||
outline-offset: -2px;
|
||||
-webkit-appearance: textfield;
|
||||
}
|
||||
|
||||
/* rtl:raw:
|
||||
[type="tel"],
|
||||
[type="url"],
|
||||
[type="email"],
|
||||
[type="number"] {
|
||||
direction: ltr;
|
||||
}
|
||||
*/
|
||||
::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
::-webkit-color-swatch-wrapper {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
font: inherit;
|
||||
}
|
||||
|
||||
::file-selector-button {
|
||||
font: inherit;
|
||||
}
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
font: inherit;
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
output {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
iframe {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
[hidden] {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=bootstrap-reboot.css.map */
|
1
css/bootstrap-reboot.css.map
Normal file
8
css/bootstrap-reboot.min.css
vendored
Normal file
1
css/bootstrap-reboot.min.css.map
Normal file
482
css/bootstrap-reboot.rtl.css
vendored
Normal file
|
@ -0,0 +1,482 @@
|
|||
/*!
|
||||
* Bootstrap Reboot v5.1.3 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2021 The Bootstrap Authors
|
||||
* Copyright 2011-2021 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||
*/
|
||||
:root {
|
||||
--bs-blue: #0d6efd;
|
||||
--bs-indigo: #6610f2;
|
||||
--bs-purple: #6f42c1;
|
||||
--bs-pink: #d63384;
|
||||
--bs-red: #dc3545;
|
||||
--bs-orange: #fd7e14;
|
||||
--bs-yellow: #ffc107;
|
||||
--bs-green: #198754;
|
||||
--bs-teal: #20c997;
|
||||
--bs-cyan: #0dcaf0;
|
||||
--bs-white: #fff;
|
||||
--bs-gray: #6c757d;
|
||||
--bs-gray-dark: #343a40;
|
||||
--bs-gray-100: #f8f9fa;
|
||||
--bs-gray-200: #e9ecef;
|
||||
--bs-gray-300: #dee2e6;
|
||||
--bs-gray-400: #ced4da;
|
||||
--bs-gray-500: #adb5bd;
|
||||
--bs-gray-600: #6c757d;
|
||||
--bs-gray-700: #495057;
|
||||
--bs-gray-800: #343a40;
|
||||
--bs-gray-900: #212529;
|
||||
--bs-primary: #0d6efd;
|
||||
--bs-secondary: #6c757d;
|
||||
--bs-success: #198754;
|
||||
--bs-info: #0dcaf0;
|
||||
--bs-warning: #ffc107;
|
||||
--bs-danger: #dc3545;
|
||||
--bs-light: #f8f9fa;
|
||||
--bs-dark: #212529;
|
||||
--bs-primary-rgb: 13, 110, 253;
|
||||
--bs-secondary-rgb: 108, 117, 125;
|
||||
--bs-success-rgb: 25, 135, 84;
|
||||
--bs-info-rgb: 13, 202, 240;
|
||||
--bs-warning-rgb: 255, 193, 7;
|
||||
--bs-danger-rgb: 220, 53, 69;
|
||||
--bs-light-rgb: 248, 249, 250;
|
||||
--bs-dark-rgb: 33, 37, 41;
|
||||
--bs-white-rgb: 255, 255, 255;
|
||||
--bs-black-rgb: 0, 0, 0;
|
||||
--bs-body-color-rgb: 33, 37, 41;
|
||||
--bs-body-bg-rgb: 255, 255, 255;
|
||||
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
||||
--bs-body-font-family: var(--bs-font-sans-serif);
|
||||
--bs-body-font-size: 1rem;
|
||||
--bs-body-font-weight: 400;
|
||||
--bs-body-line-height: 1.5;
|
||||
--bs-body-color: #212529;
|
||||
--bs-body-bg: #fff;
|
||||
}
|
||||
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: no-preference) {
|
||||
:root {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: var(--bs-body-font-family);
|
||||
font-size: var(--bs-body-font-size);
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
color: var(--bs-body-color);
|
||||
text-align: var(--bs-body-text-align);
|
||||
background-color: var(--bs-body-bg);
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
hr {
|
||||
margin: 1rem 0;
|
||||
color: inherit;
|
||||
background-color: currentColor;
|
||||
border: 0;
|
||||
opacity: 0.25;
|
||||
}
|
||||
|
||||
hr:not([size]) {
|
||||
height: 1px;
|
||||
}
|
||||
|
||||
h6, h5, h4, h3, h2, h1 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0.5rem;
|
||||
font-weight: 500;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: calc(1.375rem + 1.5vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: calc(1.325rem + 0.9vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: calc(1.3rem + 0.6vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h3 {
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: calc(1.275rem + 0.3vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h4 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
abbr[title],
|
||||
abbr[data-bs-original-title] {
|
||||
-webkit-text-decoration: underline dotted;
|
||||
text-decoration: underline dotted;
|
||||
cursor: help;
|
||||
-webkit-text-decoration-skip-ink: none;
|
||||
text-decoration-skip-ink: none;
|
||||
}
|
||||
|
||||
address {
|
||||
margin-bottom: 1rem;
|
||||
font-style: normal;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul {
|
||||
padding-right: 2rem;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul,
|
||||
dl {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
ol ol,
|
||||
ul ul,
|
||||
ol ul,
|
||||
ul ol {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
dt {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin-bottom: 0.5rem;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 0.875em;
|
||||
}
|
||||
|
||||
mark {
|
||||
padding: 0.2em;
|
||||
background-color: #fcf8e3;
|
||||
}
|
||||
|
||||
sub,
|
||||
sup {
|
||||
position: relative;
|
||||
font-size: 0.75em;
|
||||
line-height: 0;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0d6efd;
|
||||
text-decoration: underline;
|
||||
}
|
||||
a:hover {
|
||||
color: #0a58ca;
|
||||
}
|
||||
|
||||
a:not([href]):not([class]), a:not([href]):not([class]):hover {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
pre,
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: var(--bs-font-monospace);
|
||||
font-size: 1em;
|
||||
direction: ltr ;
|
||||
unicode-bidi: bidi-override;
|
||||
}
|
||||
|
||||
pre {
|
||||
display: block;
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
overflow: auto;
|
||||
font-size: 0.875em;
|
||||
}
|
||||
pre code {
|
||||
font-size: inherit;
|
||||
color: inherit;
|
||||
word-break: normal;
|
||||
}
|
||||
|
||||
code {
|
||||
font-size: 0.875em;
|
||||
color: #d63384;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
a > code {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
kbd {
|
||||
padding: 0.2rem 0.4rem;
|
||||
font-size: 0.875em;
|
||||
color: #fff;
|
||||
background-color: #212529;
|
||||
border-radius: 0.2rem;
|
||||
}
|
||||
kbd kbd {
|
||||
padding: 0;
|
||||
font-size: 1em;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
figure {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
img,
|
||||
svg {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
table {
|
||||
caption-side: bottom;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
caption {
|
||||
padding-top: 0.5rem;
|
||||
padding-bottom: 0.5rem;
|
||||
color: #6c757d;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: inherit;
|
||||
text-align: -webkit-match-parent;
|
||||
}
|
||||
|
||||
thead,
|
||||
tbody,
|
||||
tfoot,
|
||||
tr,
|
||||
td,
|
||||
th {
|
||||
border-color: inherit;
|
||||
border-style: solid;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
button {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
button:focus:not(:focus-visible) {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
input,
|
||||
button,
|
||||
select,
|
||||
optgroup,
|
||||
textarea {
|
||||
margin: 0;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
[role=button] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
select {
|
||||
word-wrap: normal;
|
||||
}
|
||||
select:disabled {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
[list]::-webkit-calendar-picker-indicator {
|
||||
display: none;
|
||||
}
|
||||
|
||||
button,
|
||||
[type=button],
|
||||
[type=reset],
|
||||
[type=submit] {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
button:not(:disabled),
|
||||
[type=button]:not(:disabled),
|
||||
[type=reset]:not(:disabled),
|
||||
[type=submit]:not(:disabled) {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
legend {
|
||||
float: right;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin-bottom: 0.5rem;
|
||||
font-size: calc(1.275rem + 0.3vw);
|
||||
line-height: inherit;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
legend {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
legend + * {
|
||||
clear: right;
|
||||
}
|
||||
|
||||
::-webkit-datetime-edit-fields-wrapper,
|
||||
::-webkit-datetime-edit-text,
|
||||
::-webkit-datetime-edit-minute,
|
||||
::-webkit-datetime-edit-hour-field,
|
||||
::-webkit-datetime-edit-day-field,
|
||||
::-webkit-datetime-edit-month-field,
|
||||
::-webkit-datetime-edit-year-field {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
::-webkit-inner-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
[type=search] {
|
||||
outline-offset: -2px;
|
||||
-webkit-appearance: textfield;
|
||||
}
|
||||
|
||||
[type="tel"],
|
||||
[type="url"],
|
||||
[type="email"],
|
||||
[type="number"] {
|
||||
direction: ltr;
|
||||
}
|
||||
::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
::-webkit-color-swatch-wrapper {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
font: inherit;
|
||||
}
|
||||
|
||||
::file-selector-button {
|
||||
font: inherit;
|
||||
}
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
font: inherit;
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
output {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
iframe {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
[hidden] {
|
||||
display: none !important;
|
||||
}
|
||||
/*# sourceMappingURL=bootstrap-reboot.rtl.css.map */
|
1
css/bootstrap-reboot.rtl.css.map
Normal file
8
css/bootstrap-reboot.rtl.min.css
vendored
Normal file
1
css/bootstrap-reboot.rtl.min.css.map
Normal file
4866
css/bootstrap-utilities.css
vendored
Normal file
1
css/bootstrap-utilities.css.map
Normal file
7
css/bootstrap-utilities.min.css
vendored
Normal file
1
css/bootstrap-utilities.min.css.map
Normal file
4857
css/bootstrap-utilities.rtl.css
vendored
Normal file
1
css/bootstrap-utilities.rtl.css.map
Normal file
7
css/bootstrap-utilities.rtl.min.css
vendored
Normal file
1
css/bootstrap-utilities.rtl.min.css.map
Normal file
11266
css/bootstrap.css
vendored
Normal file
1
css/bootstrap.css.map
Normal file
7
css/bootstrap.min.css
vendored
Normal file
1
css/bootstrap.min.css.map
Normal file
11242
css/bootstrap.rtl.css
vendored
Normal file
1
css/bootstrap.rtl.css.map
Normal file
7
css/bootstrap.rtl.min.css
vendored
Normal file
1
css/bootstrap.rtl.min.css.map
Normal file
40
css/custom.css
Normal file
|
@ -0,0 +1,40 @@
|
|||
.input-group-text {
|
||||
width: 24%;
|
||||
font-weight: 800;
|
||||
}
|
||||
input.form-control{
|
||||
font-weight: 800;
|
||||
}
|
||||
.equals-box {
|
||||
text-align: center;
|
||||
color: #e9ecef;
|
||||
font-weight: 800;
|
||||
font-size: 42px;
|
||||
}
|
||||
.equals-text {
|
||||
vertical-align: super;
|
||||
}
|
||||
p {
|
||||
color: #e9ecef;
|
||||
}
|
||||
.gold {
|
||||
color: #e8be74;
|
||||
}
|
||||
.cursor-default {
|
||||
cursor: default;
|
||||
}
|
||||
.cursor-pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
.text-center{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 475px) {
|
||||
h1{
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
p{
|
||||
font-size: 0.88rem;
|
||||
}
|
||||
}
|
BIN
fonts/Montserrat-Black.woff
Normal file
BIN
fonts/Montserrat-BlackItalic.woff
Normal file
BIN
fonts/Montserrat-Bold.woff2
Normal file
BIN
fonts/Montserrat-ExtraBold.woff2
Normal file
BIN
fonts/Montserrat-ExtraBoldItalic.woff
Normal file
BIN
fonts/Montserrat-ExtraLightItalic.woff
Normal file
BIN
fonts/Montserrat-ExtraLightItalic.woff2
Normal file
BIN
fonts/Montserrat-Italic.woff
Normal file
BIN
fonts/Montserrat-Light.woff
Normal file
BIN
fonts/Montserrat-Light.woff2
Normal file
BIN
fonts/Montserrat-LightItalic.woff2
Normal file
BIN
fonts/Montserrat-MediumItalic.woff2
Normal file
BIN
fonts/Montserrat-Regular.woff
Normal file
BIN
fonts/Montserrat-SemiBold.woff
Normal file
BIN
fonts/Montserrat-SemiBold.woff2
Normal file
BIN
fonts/Montserrat-SemiBoldItalic.woff
Normal file
BIN
fonts/Montserrat-Thin.woff
Normal file
BIN
fonts/Montserrat-ThinItalic.woff2
Normal file
BIN
fonts/MontserratAlternates-Black.woff2
Normal file
BIN
fonts/MontserratAlternates-Bold.woff2
Normal file
BIN
fonts/MontserratAlternates-ExtraLight.woff2
Normal file
BIN
fonts/MontserratAlternates-ExtraLightItalic.woff
Normal file
BIN
fonts/MontserratAlternates-ExtraLightItalic.woff2
Normal file
BIN
fonts/MontserratAlternates-Italic.woff
Normal file
BIN
fonts/MontserratAlternates-Italic.woff2
Normal file
BIN
fonts/MontserratAlternates-LightItalic.woff
Normal file
BIN
fonts/MontserratAlternates-MediumItalic.woff2
Normal file
BIN
fonts/MontserratAlternates-SemiBoldItalic.woff
Normal file
BIN
fonts/MontserratAlternates-SemiBoldItalic.woff2
Normal file
BIN
fonts/MontserratAlternates-Thin.woff2
Normal file
BIN
fonts/MontserratAlternates-ThinItalic.woff
Normal file
BIN
fonts/MontserratAlternates-ThinItalic.woff2
Normal file
35
fonts/README.MD
Normal file
|
@ -0,0 +1,35 @@
|
|||
# The Montserrat Font Project
|
||||
To use this font as a webfont, ```Montserrat.css``` is included.
|
||||
|
||||
## How to use
|
||||
### 1. @import
|
||||
You can import the file into your stylesheet as follows:
|
||||
```css
|
||||
@import url("static/fonts/Montserrat/fonts/webfonts/Montserrat.css");
|
||||
```
|
||||
|
||||
**NOTE:** The directory where the stylesheet is placed.
|
||||
|
||||
Then we can use it to style elements:
|
||||
```css
|
||||
body {
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
font-weight: 400;
|
||||
}
|
||||
```
|
||||
|
||||
### 2. \<link>ing a stylesheet
|
||||
Similarly, you could link to the same asset as you would any other CSS filter, in the \<head> of the HTML document rather than in the CSS:
|
||||
```html
|
||||
<link rel="stylesheet" type="text/css" href="static/fonts/Montserrat/fonts/webfonts/Montserrat.css">
|
||||
```
|
||||
|
||||
**NOTE:** The directory where the stylesheet is placed.
|
||||
|
||||
Then we can use it to style elements:
|
||||
```css
|
||||
body {
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
font-weight: 400;
|
||||
}
|
||||
```
|
BIN
img/apple-touch-icon-114x114.png
Normal file
After Width: | Height: | Size: 8.6 KiB |
BIN
img/apple-touch-icon-120x120.png
Normal file
After Width: | Height: | Size: 7.1 KiB |
BIN
img/apple-touch-icon-144x144.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
img/apple-touch-icon-152x152.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
img/apple-touch-icon-57x57.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
img/apple-touch-icon-60x60.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
img/apple-touch-icon-72x72.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
img/apple-touch-icon-76x76.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
img/favicon-128.png
Normal file
After Width: | Height: | Size: 7 KiB |
BIN
img/favicon-16x16.png
Normal file
After Width: | Height: | Size: 570 B |
BIN
img/favicon-196x196.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
img/favicon-32x32.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
img/favicon-96x96.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
img/favicon.ico
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
img/mstile-144x144.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
img/mstile-150x150.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
img/mstile-310x150.png
Normal file
After Width: | Height: | Size: 65 KiB |
BIN
img/mstile-310x310.png
Normal file
After Width: | Height: | Size: 108 KiB |
BIN
img/mstile-70x70.png
Normal file
After Width: | Height: | Size: 7 KiB |
710
index.php
Normal file
|
@ -0,0 +1,710 @@
|
|||
<?php
|
||||
date_default_timezone_set('Europe/Berlin');
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
include('coingecko.php');
|
||||
|
||||
// Holt die API Daten
|
||||
$api = json_decode(file_get_contents('coingecko.json'));
|
||||
|
||||
// Holt die Zeit der letzten Abfrage
|
||||
$time = date("H:i:s", $api->time);
|
||||
|
||||
// Holt die einzelnen Werte für die Berechnung
|
||||
$BTC = $api->btc;
|
||||
$EUR = $api->eur;
|
||||
$USD = $api->usd;
|
||||
$CHF = $api->chf;
|
||||
$LTC = $api->ltc;
|
||||
$CAD = $api->cad;
|
||||
$AUD = $api->aud;
|
||||
$HKD = $api->hkd;
|
||||
$SGD = $api->sgd;
|
||||
$GBP = $api->gbp;
|
||||
$RUB = $api->rub;
|
||||
$ZAR = $api->zar;
|
||||
$TRY = $api->try;
|
||||
$JPY = $api->jpy;
|
||||
$PLN = $api->pln;
|
||||
$INR = $api->inr;
|
||||
$AED = $api->aed;
|
||||
$ETH = $api->eth;
|
||||
$UAH = $api->uah;
|
||||
$KRW = $api->krw;
|
||||
$BRL = $api->brl;
|
||||
$MYR = $api->myr;
|
||||
$CNY = $api->cny;
|
||||
$XAU = $api->xau;
|
||||
$XAG = $api->xag;
|
||||
$XDR = $api->xdr;
|
||||
$VND = $api->vnd;
|
||||
$VEF = $api->vef;
|
||||
$THB = $api->thb;
|
||||
$SAR = $api->sar;
|
||||
$SEK = $api->sek;
|
||||
$PKR = $api->pkr;
|
||||
$NOK = $api->nok;
|
||||
$LKR = $api->lkr;
|
||||
$MMK = $api->mmk;
|
||||
$HUF = $api->huf;
|
||||
$ILS = $api->ils;
|
||||
$KWD = $api->kwd;
|
||||
$NGN = $api->ngn;
|
||||
$NZD = $api->nzd;
|
||||
$PHP = $api->php;
|
||||
$IDR = $api->idr;
|
||||
$TWD = $api->twd;
|
||||
$ARS = $api->ars;
|
||||
$BDT = $api->bdt;
|
||||
$BHD = $api->bhd;
|
||||
$BMD = $api->bmd;
|
||||
$CCP = $api->ccp;
|
||||
$CZK = $api->czk;
|
||||
$DKK = $api->dkk;
|
||||
|
||||
// Lädt die Sprachdatei, nach der Sprache die im Browser eingestellt wurde
|
||||
$lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
|
||||
|
||||
$acceptLang = ['de','es','it','zh'];
|
||||
$lang = in_array($lang, $acceptLang) ? $lang : 'en';
|
||||
require_once "lang/{$lang}.php";
|
||||
|
||||
$xmr_in = strtoupper(htmlspecialchars($_GET["in"]));
|
||||
|
||||
if($xmr_in == 'USD'){
|
||||
$xmr_in_fiat = number_format($USD, 2);
|
||||
}elseif($xmr_in == 'GBP'){
|
||||
$xmr_in_fiat = number_format($GBP, 2);
|
||||
}elseif($xmr_in == 'CHF'){
|
||||
$xmr_in_fiat = number_format($CHF, 2);
|
||||
}elseif($xmr_in == 'RUB'){
|
||||
$xmr_in_fiat = number_format($RUB, 2);
|
||||
}elseif($xmr_in == 'CNY'){
|
||||
$xmr_in_fiat = number_format($CNY, 2);
|
||||
}elseif($xmr_in == 'JPY'){
|
||||
$xmr_in_fiat = number_format($JPY, 2);
|
||||
}elseif($xmr_in == 'AUD'){
|
||||
$xmr_in_fiat = number_format($AUD, 2);
|
||||
}elseif($xmr_in == 'BMD'){
|
||||
$xmr_in_fiat = number_format($BMD, 2);
|
||||
}elseif($xmr_in == 'CAD'){
|
||||
$xmr_in_fiat = number_format($CAD, 2);
|
||||
}elseif($xmr_in == 'HKD'){
|
||||
$xmr_in_fiat = number_format($HKD, 2);
|
||||
}elseif($xmr_in == 'NZD'){
|
||||
$xmr_in_fiat = number_format($NZD, 2);
|
||||
}elseif($xmr_in == 'SGD'){
|
||||
$xmr_in_fiat = number_format($SGD, 2);
|
||||
}elseif($xmr_in == 'TWD'){
|
||||
$xmr_in_fiat = number_format($TWD, 2);
|
||||
}elseif($xmr_in == 'CZK'){
|
||||
$xmr_in_fiat = number_format($CZK, 2);
|
||||
}elseif($xmr_in == 'DKK'){
|
||||
$xmr_in_fiat = number_format($DKK, 2);
|
||||
}elseif($xmr_in == 'NOK'){
|
||||
$xmr_in_fiat = number_format($NOK, 2);
|
||||
}elseif($xmr_in == 'PLN'){
|
||||
$xmr_in_fiat = number_format($PLN, 2);
|
||||
}elseif($xmr_in == 'SEK'){
|
||||
$xmr_in_fiat = number_format($SEK, 2);
|
||||
}elseif($xmr_in == 'TRY'){
|
||||
$xmr_in_fiat = number_format($TRY, 2);
|
||||
}elseif($xmr_in == 'UAH'){
|
||||
$xmr_in_fiat = number_format($UAH, 2);
|
||||
}elseif($xmr_in == 'ARS'){
|
||||
$xmr_in_fiat = number_format($ARS, 2);
|
||||
}elseif($xmr_in == 'PHP'){
|
||||
$xmr_in_fiat = number_format($PHP, 2);
|
||||
}elseif($xmr_in == 'AED'){
|
||||
$xmr_in_fiat = number_format($AED, 2);
|
||||
}elseif($xmr_in == 'BRL'){
|
||||
$xmr_in_fiat = number_format($BRL, 2);
|
||||
}elseif($xmr_in == 'KRW'){
|
||||
$xmr_in_fiat = number_format($KRW, 2);
|
||||
}elseif($xmr_in == 'MYR'){
|
||||
$xmr_in_fiat = number_format($MYR, 2);
|
||||
}elseif($xmr_in == 'SAR'){
|
||||
$xmr_in_fiat = number_format($SAR, 2);
|
||||
}elseif($xmr_in == 'VEF'){
|
||||
$xmr_in_fiat = number_format($VEF, 2);
|
||||
}elseif($xmr_in == 'VND'){
|
||||
$xmr_in_fiat = number_format($VND, 2);
|
||||
}elseif($xmr_in == 'ZAR'){
|
||||
$xmr_in_fiat = number_format($ZAR, 2);
|
||||
}elseif($xmr_in == 'BDT'){
|
||||
$xmr_in_fiat = number_format($BDT, 2);
|
||||
}elseif($xmr_in == 'HUF'){
|
||||
$xmr_in_fiat = number_format($HUF, 2);
|
||||
}elseif($xmr_in == 'ILS'){
|
||||
$xmr_in_fiat = number_format($ILS, 2);
|
||||
}elseif($xmr_in == 'MMK'){
|
||||
$xmr_in_fiat = number_format($MMK, 2);
|
||||
}elseif($xmr_in == 'NGN'){
|
||||
$xmr_in_fiat = number_format($NGN, 2);
|
||||
}elseif($xmr_in == 'THB'){
|
||||
$xmr_in_fiat = number_format($THB, 2);
|
||||
}elseif($xmr_in == 'BHD'){
|
||||
$xmr_in_fiat = number_format($BHD, 2);
|
||||
}elseif($xmr_in == 'KWD'){
|
||||
$xmr_in_fiat = number_format($KWD, 2);
|
||||
}elseif($xmr_in == 'PKR'){
|
||||
$xmr_in_fiat = number_format($PKR, 2);
|
||||
}elseif($xmr_in == 'LKR'){
|
||||
$xmr_in_fiat = number_format($LKR, 2);
|
||||
}elseif($xmr_in == 'INR'){
|
||||
$xmr_in_fiat = number_format($INR, 2);
|
||||
}elseif($xmr_in == 'IDR'){
|
||||
$xmr_in_fiat = number_format($IDR, 2);
|
||||
}elseif($xmr_in == 'BTC'){
|
||||
$xmr_in_fiat = number_format($BTC, 8);
|
||||
}elseif($xmr_in == 'LTC'){
|
||||
$xmr_in_fiat = number_format($LTC, 8);
|
||||
}elseif($xmr_in == 'ETH'){
|
||||
$xmr_in_fiat = number_format($ETH, 8);
|
||||
}elseif($xmr_in == 'XAG'){
|
||||
$xmr_in_fiat = number_format($XAG, 6);
|
||||
}elseif($xmr_in == 'XAU'){
|
||||
$xmr_in_fiat = number_format($XAU, 6);
|
||||
}else{
|
||||
$xmr_in_fiat = number_format($EUR, 2);
|
||||
}
|
||||
|
||||
$xmr_in_fiat = strtr($xmr_in_fiat, ",", " ");
|
||||
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="<?php echo $lang_meta; ?>">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title lang="<?php echo $lang_meta; ?>"><?php echo $page_title; ?></title>
|
||||
<meta name="description" lang="<?php echo $lang_meta; ?>" content="<?php echo $meta_description; ?>"/>
|
||||
<meta name="keywords" lang="<?php echo $lang_meta; ?>" content="<?php echo $meta_keywords; ?>"/>
|
||||
|
||||
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="img/apple-touch-icon-57x57.png" />
|
||||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="img/apple-touch-icon-114x114.png" />
|
||||
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="img/apple-touch-icon-72x72.png" />
|
||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="img/apple-touch-icon-144x144.png" />
|
||||
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="img/apple-touch-icon-60x60.png" />
|
||||
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="img/apple-touch-icon-120x120.png" />
|
||||
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="img/apple-touch-icon-76x76.png" />
|
||||
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="img/apple-touch-icon-152x152.png" />
|
||||
<link rel="icon" type="image/png" href="img/favicon-196x196.png" sizes="196x196" />
|
||||
<link rel="icon" type="image/png" href="img/favicon-96x96.png" sizes="96x96" />
|
||||
<link rel="icon" type="image/png" href="img/favicon-32x32.png" sizes="32x32" />
|
||||
<link rel="icon" type="image/png" href="img/favicon-16x16.png" sizes="16x16" />
|
||||
<link rel="icon" type="image/png" href="img/favicon-128.png" sizes="128x128" />
|
||||
<meta name="application-name" content="Moner.ooo"/>
|
||||
<meta name="msapplication-TileColor" content="#ffffff" />
|
||||
<meta name="msapplication-TileImage" content="img/mstile-144x144.png" />
|
||||
<meta name="msapplication-square70x70logo" content="img/mstile-70x70.png" />
|
||||
<meta name="msapplication-square150x150logo" content="img/mstile-150x150.png" />
|
||||
<meta name="msapplication-wide310x150logo" content="img/mstile-310x150.png" />
|
||||
<meta name="msapplication-square310x310logo" content="img/mstile-310x310.png" />
|
||||
<meta name="theme-color" content="#193e4c">
|
||||
<meta name="apple-mobile-web-app-title" content="Moner.ooo">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="#193e4c">
|
||||
|
||||
<link href="css/bootstrap.min.css" rel="stylesheet">
|
||||
|
||||
<!---- style anpassung -->
|
||||
<link href="css/custom.css" rel="stylesheet">
|
||||
<link href="css/fonts/Montserrat.css" rel="stylesheet">
|
||||
|
||||
<style>
|
||||
html {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: linear-gradient(to bottom right, #013c4a 0, #193e4c 44%, #004b5b 100%)!important;
|
||||
color: #fff;
|
||||
font-family: 'Montserrat'!important;
|
||||
font-style: normal;
|
||||
}
|
||||
body {
|
||||
background-color: transparent;
|
||||
}
|
||||
p.fiat-info{
|
||||
color:#4d4d4d;
|
||||
}
|
||||
p.fiat-info span,
|
||||
a.fiat-tooltip{
|
||||
color:white;
|
||||
}
|
||||
.btn{
|
||||
padding: 2px;
|
||||
margin-bottom: 5px;
|
||||
font-size: 0.8rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
@media only screen and (max-width: 475px) {
|
||||
.btn{
|
||||
padding: 1px;
|
||||
font-size: 0.6rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container pt-4">
|
||||
<div class="row">
|
||||
<div class="col"></div>
|
||||
|
||||
<div class="col-10">
|
||||
<div class="cursor-default text-center text-white">
|
||||
<h1 lang="<?php echo $lang_meta; ?>"><span style="color:#4d4d4d;">↓</span> <span style="color:#ff6600;" title="Monero">XMR</span> <?php echo $title_h1;?> <span style="color:#4d4d4d;">↓</span></h1>
|
||||
<button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/'><b><?php echo $l_eur; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">EUR</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=USD'><b><?php echo $l_usd; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">USD</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=GBP'><b><?php echo $l_gbp; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">GBP</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=CHF'><b><?php echo $l_chf; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">CHF</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=RUB'><b><?php echo $l_rub; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">RUB</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=CNY'><b><?php echo $l_cny; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">CNY</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=JPY'><b><?php echo $l_jpy; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">JPY</button><br/>
|
||||
<button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=AUD'><b><?php echo $l_aud; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">AUD</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=BMD'><b><?php echo $l_bmd; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">BMD</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=CAD'><b><?php echo $l_cad; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">CAD</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=HKD'><b><?php echo $l_hkd; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">HKD</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=NZD'><b><?php echo $l_nzd; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">NZD</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=SGD'><b><?php echo $l_sgd; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">SGD</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=TWD'><b><?php echo $l_twd; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">TWD</button><br/>
|
||||
<button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=CZK'><b><?php echo $l_czk; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">CZK</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=DKK'><b><?php echo $l_dkk; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">DKK</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=NOK'><b><?php echo $l_nok; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">NOK</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=PLN'><b><?php echo $l_pln; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">PLN</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=SEK'><b><?php echo $l_sek; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">SEK</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=TRY'><b><?php echo $l_try; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">TRY</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=UAH'><b><?php echo $l_uah; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">UAH</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=ARS'><b><?php echo $l_ars; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">ARS</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=PHP'><b><?php echo $l_php; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">PHP</button><br/>
|
||||
<button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=AED'><b><?php echo $l_aed; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">AED</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=BRL'><b><?php echo $l_brl; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">BRL</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=KRW'><b><?php echo $l_krw; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">KRW</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=MYR'><b><?php echo $l_myr; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">MYR</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=SAR'><b><?php echo $l_sar; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">SAR</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=VEF'><b><?php echo $l_vef; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">VEF</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=VND'><b><?php echo $l_vnd; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">VND</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=ZAR'><b><?php echo $l_zar; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">ZAR</button><br/>
|
||||
<button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=BDT'><b><?php echo $l_bdt; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">BDT</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=HUF'><b><?php echo $l_huf; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">HUF</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=ILS'><b><?php echo $l_ils; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">ILS</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=MMK'><b><?php echo $l_mmk; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">MMK</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=NGN'><b><?php echo $l_ngn; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">NGN</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=THB'><b><?php echo $l_thb; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">THB</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=BHD'><b><?php echo $l_bhd; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">BHD</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=KWD'><b><?php echo $l_kwd; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">KWD</button><br/>
|
||||
<button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=PKR'><b><?php echo $l_pkr; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">PKR</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=LKR'><b><?php echo $l_lkr; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">LKR</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=INR'><b><?php echo $l_inr; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">INR</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=IDR'><b><?php echo $l_idr; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">IDR</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=BTC'><b><?php echo $l_btc; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">BTC</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=LTC'><b><?php echo $l_ltc; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">LTC</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=ETH'><b><?php echo $l_eth; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">ETH</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=XAG'><b><?php echo $l_xag; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">XAG</button>
|
||||
| <button type="button" class="btn btn-light" title="<a class='text-decoration-none fiat-tooltip' href='/?in=XAU'><b><?php echo $l_xau; ?></b></a>" data-toggle="tooltip" data-bs-html="true" data-placement="top">XAU</button>
|
||||
</div>
|
||||
<hr class="gold" />
|
||||
|
||||
<div class="input-group">
|
||||
<input class="form-control" id="xmrInput" type="text" spellcheck="false" autocorrect="off" inputmode="numeric" aria-describedby="basic-addon-xmr" value="1" onchange="xmrConvert(this.value)" onkeyup="this.value = this.value.replace(/[^\.^,\d]/g, ''); this.value = this.value.replace(/\,/, '.'); if(this.value.split('.').length > 2){this.value = this.value.slice(0, -1);} xmrConvert(this.value)">
|
||||
<input class="input-group-text" id="basic-addon-xmr" type="text" value="XMR" disabled>
|
||||
</div>
|
||||
|
||||
<div class="equals-box">
|
||||
<span class="equals-text cursor-default">=</span>
|
||||
</div>
|
||||
|
||||
<div class="fiatDiv input-group">
|
||||
<input class="form-control" id="fiatInput" type="text" spellcheck="false" autocorrect="off" inputmode="numeric" value="<?php echo $xmr_in_fiat; ?>" onchange="fiatConvert(this.value)" onkeyup="this.value = this.value.replace(/[^\.^,\d]/g, ''); this.value = this.value.replace(/\,/, '.'); if(this.value.split('.').length > 2){this.value = this.value.slice(0, -1);} fiatConvert(this.value)">
|
||||
<select class="input-group-text cursor-pointer" id="selectBox" onchange="xmrConvert(this.value)">
|
||||
<?php
|
||||
if($xmr_in != ""){
|
||||
echo '<option value="'.$xmr_in.'">'.$xmr_in.'</option>';
|
||||
}
|
||||
?>
|
||||
<option value="EUR">EUR</option>
|
||||
<option value="USD">USD</option>
|
||||
<option value="GBP">GBP</option>
|
||||
<option value="CHF">CHF</option>
|
||||
<option value="RUB">RUB</option>
|
||||
<option value="CNY">CNY</option>
|
||||
<option value="JPY">JPY</option>
|
||||
<option value="AUD">AUD</option>
|
||||
<option value="BMD">BMD</option>
|
||||
<option value="CAD">CAD</option>
|
||||
<option value="HKD">HKD</option>
|
||||
<option value="NZD">NZD</option>
|
||||
<option value="SGD">SGD</option>
|
||||
<option value="TWD">TWD</option>
|
||||
<option value="CZK">CZK</option>
|
||||
<option value="DKK">DKK</option>
|
||||
<option value="NOK">NOK</option>
|
||||
<option value="PLN">PLN</option>
|
||||
<option value="SEK">SEK</option>
|
||||
<option value="TRY">TRY</option>
|
||||
<option value="UAH">UAH</option>
|
||||
<option value="ARS">ARS</option>
|
||||
<option value="PHP">PHP</option>
|
||||
<option value="AED">AED</option>
|
||||
<option value="BRL">BRL</option>
|
||||
<option value="KRW">KRW</option>
|
||||
<option value="MYR">MYR</option>
|
||||
<option value="SAR">SAR</option>
|
||||
<option value="VEF">VEF</option>
|
||||
<option value="VND">VND</option>
|
||||
<option value="ZAR">ZAR</option>
|
||||
<option value="BDT">BDT</option>
|
||||
<option value="HUF">HUF</option>
|
||||
<option value="ILS">ILS</option>
|
||||
<option value="MMK">MMK</option>
|
||||
<option value="NGN">NGN</option>
|
||||
<option value="THB">THB</option>
|
||||
<option value="BHD">BHD</option>
|
||||
<option value="KWD">KWD</option>
|
||||
<option value="PKR">PKR</option>
|
||||
<option value="LKR">LKR</option>
|
||||
<option value="INR">INR</option>
|
||||
<option value="IDR">IDR</option>
|
||||
<option value="BTC">BTC</option>
|
||||
<option value="LTC">LTC</option>
|
||||
<option value="ETH">ETH</option>
|
||||
<option value="XAG">XAG</option>
|
||||
<option value="XAU">XAU</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<hr class="gold" />
|
||||
<small class="cursor-default text-white" lang="<?php echo $lang_meta; ?>">
|
||||
<?php echo $info; ?>
|
||||
</small>
|
||||
<hr />
|
||||
<small class="cursor-default text-white" lang="<?php echo $lang_meta; ?>">
|
||||
<?php echo $getmonero; ?>
|
||||
</small>
|
||||
</div>
|
||||
|
||||
<div class="col"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!---- umrechnung bei EUR/BTC/CHF/USD angabe -->
|
||||
<script type="text/javascript">
|
||||
function fiatConvert(value)
|
||||
{
|
||||
var fiatAmount = document.getElementById("fiatInput").value; // Holt sich den Wert aus dem Eingabefeld
|
||||
var xmrValue = document.getElementById("xmrInput");
|
||||
var selectBox = document.getElementById("selectBox").value;
|
||||
|
||||
if (selectBox == "BTC") { // Welche Umrechnung?
|
||||
var value = fiatAmount / <?php echo number_format($BTC, 8); ?>; // Die Formel
|
||||
xmrValue.value = value.toFixed(12); // Formatiert und gibt die Umrechnung aus
|
||||
} else if (selectBox == "EUR") {
|
||||
var value = fiatAmount / <?php echo $EUR; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "USD") {
|
||||
var value = fiatAmount / <?php echo $USD; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "CHF") {
|
||||
var value = fiatAmount / <?php echo $CHF; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "LTC") {
|
||||
var value = fiatAmount / <?php echo $LTC; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "CAD") {
|
||||
var value = fiatAmount / <?php echo $CAD; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "AUD") {
|
||||
var value = fiatAmount / <?php echo $AUD; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "HKD") {
|
||||
var value = fiatAmount / <?php echo $HKD; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "SGD") {
|
||||
var value = fiatAmount / <?php echo $SGD; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "GBP") {
|
||||
var value = fiatAmount / <?php echo $GBP; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "RUB") {
|
||||
var value = fiatAmount / <?php echo $RUB; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "ZAR") {
|
||||
var value = fiatAmount / <?php echo $ZAR; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "TRY") {
|
||||
var value = fiatAmount / <?php echo $TRY; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "JPY") {
|
||||
var value = fiatAmount / <?php echo $JPY; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "PLN") {
|
||||
var value = fiatAmount / <?php echo $PLN; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "INR") {
|
||||
var value = fiatAmount / <?php echo $INR; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "AED") {
|
||||
var value = fiatAmount / <?php echo $AED; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "ETH") {
|
||||
var value = fiatAmount / <?php echo $ETH; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "UAH") {
|
||||
var value = fiatAmount / <?php echo $UAH; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "KRW") {
|
||||
var value = fiatAmount / <?php echo $KRW; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "BRL") {
|
||||
var value = fiatAmount / <?php echo $BRL; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "MYR") {
|
||||
var value = fiatAmount / <?php echo $MYR; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "CNY") {
|
||||
var value = fiatAmount / <?php echo $CNY; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "XAG") {
|
||||
var value = fiatAmount / <?php echo $XAG; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "XAU") {
|
||||
var value = fiatAmount / <?php echo $XAU; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "VEF") {
|
||||
var value = fiatAmount / <?php echo $VEF; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "VND") {
|
||||
var value = fiatAmount / <?php echo $VND; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "THB") {
|
||||
var value = fiatAmount / <?php echo $THB; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "SAR") {
|
||||
var value = fiatAmount / <?php echo $SAR; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "SEK") {
|
||||
var value = fiatAmount / <?php echo $SEK; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "PKR") {
|
||||
var value = fiatAmount / <?php echo $PKR; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "NZD") {
|
||||
var value = fiatAmount / <?php echo $NZD; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "PHP") {
|
||||
var value = fiatAmount / <?php echo $PHP; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "NOK") {
|
||||
var value = fiatAmount / <?php echo $NOK; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "LKR") {
|
||||
var value = fiatAmount / <?php echo $LKR; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "MMK") {
|
||||
var value = fiatAmount / <?php echo $MMK; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "HUF") {
|
||||
var value = fiatAmount / <?php echo $HUF; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "ILS") {
|
||||
var value = fiatAmount / <?php echo $ILS; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "KWD") {
|
||||
var value = fiatAmount / <?php echo $KWD; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "NGN") {
|
||||
var value = fiatAmount / <?php echo $NGN; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "IDR") {
|
||||
var value = fiatAmount / <?php echo $IDR; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "TWD") {
|
||||
var value = fiatAmount / <?php echo $TWD; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "ARS") {
|
||||
var value = fiatAmount / <?php echo $ARS; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "BDT") {
|
||||
var value = fiatAmount / <?php echo $BDT; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "BHD") {
|
||||
var value = fiatAmount / <?php echo $BHD; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "BMD") {
|
||||
var value = fiatAmount / <?php echo $BMD; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "CZK") {
|
||||
var value = fiatAmount / <?php echo $CZK; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
} else if (selectBox == "DKK") {
|
||||
var value = fiatAmount / <?php echo $DKK; ?>;
|
||||
xmrValue.value = value.toFixed(12);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<!---- umrechnung bei XMR angabe -->
|
||||
<script type="text/javascript">
|
||||
function xmrConvert(value)
|
||||
{
|
||||
var xmrAmount = document.getElementById("xmrInput").value;
|
||||
var fiatValue = document.getElementById("fiatInput");
|
||||
var selectBox = document.getElementById("selectBox").value;
|
||||
|
||||
if (selectBox == "BTC") {
|
||||
var value = xmrAmount * <?php echo number_format($BTC, 8); ?>;
|
||||
fiatValue.value = value.toFixed(8);
|
||||
} else if (selectBox == "EUR") {
|
||||
var value = xmrAmount * <?php echo $EUR; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "USD") {
|
||||
var value = xmrAmount * <?php echo $USD; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "CHF") {
|
||||
var value = xmrAmount * <?php echo $CHF; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "LTC") {
|
||||
var value = xmrAmount * <?php echo $LTC; ?>;
|
||||
fiatValue.value = value.toFixed(8);
|
||||
} else if (selectBox == "CAD") {
|
||||
var value = xmrAmount * <?php echo $CAD; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "AUD") {
|
||||
var value = xmrAmount * <?php echo $AUD; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "HKD") {
|
||||
var value = xmrAmount * <?php echo $HKD; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "SGD") {
|
||||
var value = xmrAmount * <?php echo $SGD; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "GBP") {
|
||||
var value = xmrAmount * <?php echo $GBP; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "RUB") {
|
||||
var value = xmrAmount * <?php echo $RUB; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "ZAR") {
|
||||
var value = xmrAmount * <?php echo $ZAR; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "TRY") {
|
||||
var value = xmrAmount * <?php echo $TRY; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "JPY") {
|
||||
var value = xmrAmount * <?php echo $JPY; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "PLN") {
|
||||
var value = xmrAmount * <?php echo $PLN; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "INR") {
|
||||
var value = xmrAmount * <?php echo $INR; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "AED") {
|
||||
var value = xmrAmount * <?php echo $AED; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "ETH") {
|
||||
var value = xmrAmount * <?php echo $ETH; ?>;
|
||||
fiatValue.value = value.toFixed(8);
|
||||
} else if (selectBox == "UAH") {
|
||||
var value = xmrAmount * <?php echo $UAH; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "KRW") {
|
||||
var value = xmrAmount * <?php echo $KRW; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "BRL") {
|
||||
var value = xmrAmount * <?php echo $BRL; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "MYR") {
|
||||
var value = xmrAmount * <?php echo $MYR; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "CNY") {
|
||||
var value = xmrAmount * <?php echo $CNY; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "XAU") {
|
||||
var value = xmrAmount * <?php echo $XAU; ?>;
|
||||
fiatValue.value = value.toFixed(6);
|
||||
} else if (selectBox == "XAG") {
|
||||
var value = xmrAmount * <?php echo $XAG; ?>;
|
||||
fiatValue.value = value.toFixed(3);
|
||||
} else if (selectBox == "VND") {
|
||||
var value = xmrAmount * <?php echo $VND; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "VEF") {
|
||||
var value = xmrAmount * <?php echo $VEF; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "THB") {
|
||||
var value = xmrAmount * <?php echo $THB; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "SAR") {
|
||||
var value = xmrAmount * <?php echo $SAR; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "SEK") {
|
||||
var value = xmrAmount * <?php echo $SEK; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "PKR") {
|
||||
var value = xmrAmount * <?php echo $PKR; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "NZD") {
|
||||
var value = xmrAmount * <?php echo $NZD; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "PHP") {
|
||||
var value = xmrAmount * <?php echo $PHP; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "NOK") {
|
||||
var value = xmrAmount * <?php echo $NOK; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "LKR") {
|
||||
var value = xmrAmount * <?php echo $LKR; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "MMK") {
|
||||
var value = xmrAmount * <?php echo $MMK; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "HUF") {
|
||||
var value = xmrAmount * <?php echo $HUF; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "ILS") {
|
||||
var value = xmrAmount * <?php echo $ILS; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "KWD") {
|
||||
var value = xmrAmount * <?php echo $KWD; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "NGN") {
|
||||
var value = xmrAmount * <?php echo $NGN; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "IDR") {
|
||||
var value = xmrAmount * <?php echo $IDR; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "TWD") {
|
||||
var value = xmrAmount * <?php echo $TWD; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "ARS") {
|
||||
var value = xmrAmount * <?php echo $ARS; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "BDT") {
|
||||
var value = xmrAmount * <?php echo $BDT; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "BHD") {
|
||||
var value = xmrAmount * <?php echo $BHD; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "BMD") {
|
||||
var value = xmrAmount * <?php echo $BMD; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
}else if (selectBox == "CZK") {
|
||||
var value = xmrAmount * <?php echo $CZK; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
} else if (selectBox == "DKK") {
|
||||
var value = xmrAmount * <?php echo $DKK; ?>;
|
||||
fiatValue.value = value.toFixed(2);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="js/bootstrap.bundle.min.js"></script>
|
||||
<script>
|
||||
var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-toggle="tooltip"]'));
|
||||
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
|
||||
return new bootstrap.Tooltip(tooltipTriggerEl)
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
</html>
|