-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdb.js
130 lines (117 loc) · 7.56 KB
/
db.js
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
121
122
123
124
125
126
127
128
129
130
let dashboard = ()=>{
return `
<div id="hi_main_body" class="same">
<div id="hi_main" style="width:95%" class="same">
<div>
<h1>Email Testing</h1>
<p>Each Mailtrap account comes with an individual testing environment. Integrate it with your app in
just a
few clicks. Send emails to Mailtrap directly from your CRM or email sending service. Simulate
sending to
multiple recipients.</p>
</div>
<div>
<div class="h1_main_second" style="display: flex;"><img
src="https://www.pngitem.com/pimgs/m/195-1951784_info-icon-svg-transparent-background-information-icon-hd.png"
alt="">
<h3>Current Plan</h3>
</div>
<div id="hi_main_right">
<div>
<h4 style="margin-bottom: 10px;">Free</h4>
<p>500 emails</p>
<p>0 forwarded</p>
<p>1 projects</p>
<p>1 inboxes</p>
</div>
<div>
<img src="https://imgkub.com/images/2022/07/22/mailtrap4.png" alt="mailtrap4.png" border="0">
<div>Upgrade Plan</div>
</div>
</div>
<div class="h1_main_second" style="display: flex;"><img
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSDNUH4Y-OCddIB08zxewpZ0MPR2siYTyND62RUDuPWccsmeeN5bmhB3djAo5cEQoCdVHs&usqp=CAU"
alt="">
<h3>Usage</h3>
</div>
<div id="hi_main_right_last1">
<div>
<h4 style="margin-bottom: 10px;">Features</h4>
<p>Total test emails
0
/ 50</p>
<p>Messages forwarded 0 / 0</p>
<p>Projects
1 / 1</p>
<p>Inboxes
1 / 1</p>
<select name="" id="">
<option value="">View All Plan Features</option>
</select>
</div>
<div>
<p>Next Reset: 2022-08-22</p>
</div>
</div>
</div>
</div>
<div class="same hi_same_PBP">
<img src="https://imgkub.com/images/2022/07/22/mailtrap5.png" alt="mailtrap5.png" border="0">
<h3>Payment Method</h3>
</div>
<div id="hi_second" class="same">
<div>
<h4>Credit Card</h4>
</div>
<div class="same">
<div class="same" id="hi_under">
<img src="https://imgkub.com/images/2022/07/22/mailtrap6.png" alt="mailtrap6.png" border="0">
<p>No Credit Card</p>
</div>
<div id="hi_credit_button">Add Credit Card</div>
</div>
</div>
<div class="same hi_same_PBP">
<img src="https://imgkub.com/images/2022/07/22/mailtrap7.png" alt="mailtrap7.png" border="0">
<h3>Billing Information</h3>
</div>
<div id="hi_third" class="same">
<div class="same">
<div class="same">
<h4>Address</h4>
<p>no address added</p>
<p>no contact info added</p>
</div>
<div class="same">
<h4>Billing Contact</h4>
<div id="hi_JS_p">
<!-- <p>hiltonborah123@gmail.com</p> -->
</div>
</div>
</div>
<div class="same">
<div>Change</div>
</div>
</div>
<div class="same hi_same_PBP">
<img src="https://imgkub.com/images/2022/07/22/mailtrap8.png" alt="mailtrap8.png" border="0">
<h3>Payment History</h3>
</div>
<div id="hi_fourth">
<div style="background-color: white;">
<h4>Price</h4>
<h4>Type</h4>
<h4>Status</h4>
<h4>Creation Date</h4>
</div>
<div>
<div>
<p>You have no payment transactions so far</p>
</div>
</div>
</div>
</div>`
}
export default dashboard ;