forked from chrisleekr/binance-trading-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.prod.html
113 lines (105 loc) · 3.17 KB
/
index.prod.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Binance Auto Trading Bot Dashboard</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link
rel="manifest"
href="/site.webmanifest"
crossorigin="use-credentials"
/>
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#191f2c" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta name="apple-mobile-web-app-title" content="Binance Trading Bot" />
<meta name="application-name" content="Binance Trading Bot" />
<meta name="msapplication-TileColor" content="#191f2c" />
<meta name="theme-color" content="#191f2c" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="./css/fontawesome/all.min.css"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/css/Typeahead.min.css"
/>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/notyf.min.css" />
<link rel="stylesheet" href="./dist/App.min.css" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
</head>
<body class="dark-theme dark-mode">
<div id="app" class="app"></div>
<script
src="https://unpkg.com/react@17/umd/react.production.min.js"
crossorigin
></script>
<script
src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js"
crossorigin
></script>
<script
src="https://unpkg.com/[email protected]/dist/react-bootstrap.min.js"
crossorigin
></script>
<script
src="https://unpkg.com/[email protected]/min/moment.min.js"
crossorigin
></script>
<script
src="https://unpkg.com/[email protected]/lodash.min.js"
crossorigin
></script>
<script
src="https://unpkg.com/axios/dist/axios.min.js"
crossorigin
></script>
<script
src="https://unpkg.com/[email protected]/dist/react-bootstrap-typeahead.min.js"
crossorigin
></script>
<script
src="https://unpkg.com/[email protected]/notyf.min.js"
crossorigin
></script>
<script>
const { useState, useRef, useEffect } = React;
const {
Modal,
ButtonGroup,
Button,
Badge,
Form,
Spinner,
Accordion,
Card,
OverlayTrigger,
Popover,
Row,
Col,
InputGroup,
FormControl,
useAccordionToggle,
Table,
Pagination
} = ReactBootstrap;
const { Typeahead } = ReactBootstrapTypeahead;
</script>
<script src="./dist/App.min.js"></script>
</body>
</html>