-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPayment.html
120 lines (87 loc) · 3.77 KB
/
Payment.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
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<style>
#sidebar>div:nth-child(3){
background-color: #111111;
}
</style>
<link rel="stylesheet" href="./mscbot/static/css/chat.css">
<link rel="stylesheet" href="./mscbot/static/css/home.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./AccountCss/style.css">
<link rel="stylesheet" href="./AccountCss/footer.css">
<link rel="stylesheet" href="./AccountCss/Navbar.css">
</head>
<body>
<header>
<div id="navbar"></div>
</header>
<div id="head">
<h1 style="margin-left: 55px;">My Account</h1>
<div id="main">
<div id="sidebar"></div>
<div id="Right">
<h1>Update Credit Card</h1>
<div style="margin-top: 50px;"></div>
<p>You don't have a subscription attached to a payment method.</p>
</div>
</div>
</div>
<!-- footer html -->
<div id="footer" class="footer"></div>
<!-- Chat-boat-coad -->
<div class="chat-bar-collapsible">
<button id="chat-button" type="button" class="collapsible">
<i id="chat-icon" style="color: #fff;" class="fa fa-fw fa-comments-o"></i>
</button>
<div class="content">
<!-- bot-header -->
<div class="bot-header"><img src="https://static.frontendmasters.com/assets/fm/js/static/frontendmasters.e1e10b58c1.svg"></div>
<div class="full-chat-block">
<!-- Message Container -->
<div class="outer-container">
<div class="chat-container">
<!-- Messages -->
<div id="chatbox">
<h5 id="chat-timestamp"></h5>
<p id="botStarterMessage" class="botText"><span>Loading...</span></p>
</div>
<!-- User input box -->
<div class="chat-bar-input-block">
<div id="userInput">
<input id="textInput" class="input-box" type="text" name="msg"
placeholder="Write a reply..">
<p></p>
</div>
<div class="chat-bar-icons">
<i id="chat-icon" style="color: #333;" class="fa fa-fw fa-send"
onclick="sendButton()"></i>
</div>
</div>
<div id="chat-bar-bottom">
<p></p>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
<script type="module">
import sider from './component/sidebar.js';
let Ndiv = document.getElementById("sidebar");
Ndiv.innerHTML = sider();
import footer from './component/footer.js'
let footDiv = document.getElementById("footer")
footDiv.innerHTML = footer();
import navbar from './component/Navbar.js'
let nav = $("#navbar").append(navbar());
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="./mscbot/static/scripts/chat.js"></script>