-
Notifications
You must be signed in to change notification settings - Fork 2
/
UI.html
487 lines (473 loc) · 25.2 KB
/
UI.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/6614217c3b.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles/UI.css">
<link rel="stylesheet" href="styles/UI_plans.css">
<link rel="icon" type="image/x-icon" href="https://mailtrap.io/wp-content/uploads/2021/04/cropped-favicon-196x196-1-270x270.png">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
<title>Mailtrack/user-profile</title>
</head>
<body>
<!-- nav bar starts -->
<div class="fixed-top" id="nav_body">
<!-- nav bar starts from here -->
<div class="sticky-top" id="nav">
<div>
<div id="logo"><a id="changelocation" href="UI.html"><img id="nav_img" src="navbarimg/logo.png" alt=""></a></div>
</div>
<!-- Logo has been attached -->
<!-- first dropdown box starts first menu option-->
<div id="visable">
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-bs-toggle="dropdown" aria-expanded="false">
Email Testing
</button>
<ul id="list_items" class="dropdown-menu" aria-labelledby="dropdownMenu2">
<!-- <li>1automation for Email Testing</li> -->
<div id="QA_Automation">
<a href="QA_Automation.html">
<div><img src="navbarimg/qa_automation_icon_menu.svg" alt=""></div>
<div>
<li><h4>QA Automation</h4></li>
<p>Automation for Email Testing</p>
</div>
</a>
</div>
<div id="HTML_Check">
<a href="QA_Automation.html">
<div><img src="navbarimg/check_html_icon_menu.svg" alt=""></div>
<div>
<li><h4>HTML Check</h4></li>
<p>Find HTML/CSS issues</p>
</div>
</a>
</div>
<div id="Fake_SMTP_Server">
<a href="QA_Automation.html">
<div><img src="navbarimg/fake_smtp_server_icon_menu.svg" alt=""></div>
<div>
<li><h4>Fake SMTP Server</h4></li>
<p>Your own SMTP server</p>
</div>
</a>
</div>
<div id="Sandbox_API">
<a href="QA_Automation.html">
<div><img src="navbarimg/api_icon_menu.svg" alt=""></div>
<div>
<li><h4>Sandbox API</h4></li>
<p>Integrate with your application</p>
</div>
</a>
</div>
</ul>
</div>
<!-- first dropdown box ends -->
<!-- second option in nav-bar starting -->
<div id="second_option">
<a href="Email_API.html">
<button type="button" id="dropdownMenu2">
Email API
</button>
</a>
</div>
<!-- second option in nav-bar ending -->
<!-- third option in nav-bar starting -->
<div id="second_option">
<a href="Pricing.html">
<button type="button" id="dropdownMenu2">
Pricing
</button>
</a>
</div>
<!-- third option in nav-bar ending -->
<!-- fourth option in nav-bar startyin -->
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-bs-toggle="dropdown" aria-expanded="false">
Resources
</button>
<ul id="list_items" class="dropdown-menu" aria-labelledby="dropdownMenu2">
<!-- <li>1automation for Email Testing</li> -->
<div id="API">
<a href="API.html">
<div><img src="navbarimg/check_html_icon_menu.svg" alt=""></div>
<div>
<li><h4>API</h4></li>
<p>Intergrate with existing resources</p>
</div>
</a>
</div>
<div id="Case_studies">
<a href="Case_studies.html">
<div><img height="40px" width="40px" src="navbarimg/file-case.png" alt=""></div>
<div>
<li><h4>Case Studies</h4></li>
<p>Success stories of our Customers</p>
</div>
</a>
</div>
<div id="Blog">
<a href="Case_studies.html">
<div><img height="40px" width="40px" src="navbarimg/blog.png" alt=""></div>
<div>
<li><h4>Blog</h4></li>
<p>The best content about emails</p>
</div>
</a>
</div>
<div id="Help">
<a href="Help.html">
<div><img height="40px" width="40px" src="navbarimg/info-center.png" alt=""></div>
<div>
<li><h4>Help</h4></li>
<p>How-to's and Knowledge base</p>
</div>
</a>
</div>
</ul>
</div>
<!-- fourth option in nav-bar ending -->
<div id="user-signup">
<button id="barr" class="btn btn-secondary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">
<img style="width: 30px;height: 30px;" src="https://thumbs.dreamstime.com/z/icon-profile-color-green-icon-profile-color-green-circle-color-dark-green-background-color-white-194702090.jpg"/>
</button>
<ul class="dropdown-menu">
<li><a href="userprofile.html" id="signin" class="dropdown-item" href="#">User Profil</a></li>
<li><a href="index.html" onclick="Logout()" class="dropdown-item" href="#">Log Out</a></li>
<li><a id="logout" class="dropdown-item" href="feedback.html">Feed Back</a></li>
</ul>
</div>
</div>
<!-- I -->
<!-- N -->
<!-- V -->
<!-- E -->
<!-- S -->
<!-- invisible button starts -->
<div id="inv_opt">
<button id="bar" class="btn btn-primary" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasRight" aria-controls="offcanvasRight"><i class="fa-solid fa-bars"></i></button>
<div class="offcanvas offcanvas-end" tabindex="-1" id="offcanvasRight" aria-labelledby="offcanvasRightLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="offcanvasRightLabel"></h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<!-- added ones -->
<div>
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-bs-toggle="dropdown" aria-expanded="false">
Email Testing
</button>
<ul id="list_items" class="dropdown-menu" aria-labelledby="dropdownMenu2">
<!-- <li>1automation for Email Testing</li> -->
<div id="QA_Automation">
<a href="QA_Automation.html">
<div><img src="navbarimg/qa_automation_icon_menu.svg" alt=""></div>
<div>
<li><h4>QA Automation</h4></li>
<p>Automation for Email Testing</p>
</div>
</a>
</div>
<div id="HTML_Check">
<a href="QA_Automation.html">
<div><img src="navbarimg/check_html_icon_menu.svg" alt=""></div>
<div>
<li><h4>HTML Check</h4></li>
<p>Find HTML/CSS issues</p>
</div>
</a>
</div>
<div id="Fake_SMTP_Server">
<a href="QA_Automation.html">
<div><img src="navbarimg/fake_smtp_server_icon_menu.svg" alt=""></div>
<div>
<li><h4>Fake SMTP Server</h4></li>
<p>Your own SMTP server</p>
</div>
</a>
</div>
<div id="Sandbox_API">
<a href="QA_Automation.html">
<div><img src="navbarimg/api_icon_menu.svg" alt=""></div>
<div>
<li><h4>Sandbox API</h4></li>
<p>Integrate with your application</p>
</div>
</a>
</div>
</ul>
</div>
<!-- first dropdown box ends -->
<!-- second option in nav-bar starting -->
<div id="second_option">
<a href="Email_API.html">
<button type="button" id="dropdownMenu2">
Email API
</button>
</a>
</div>
<!-- second option in nav-bar ending -->
<!-- third option in nav-bar starting -->
<div id="second_option">
<a href="Pricing.html">
<button class="Pricing" type="button" id="dropdownMenu2">
Pricing
</button>
</a>
</div>
<!-- third option in nav-bar ending -->
<!-- fourth option in nav-bar startyin -->
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-bs-toggle="dropdown" aria-expanded="false">
Resources
</button>
<ul id="list_items" class="dropdown-menu" aria-labelledby="dropdownMenu2">
<!-- <li>1automation for Email Testing</li> -->
<div id="API">
<a href="API.html">
<div><img src="navbarimg/check_html_icon_menu.svg" alt=""></div>
<div>
<li><h4>API</h4></li>
<p>Intergrate with existing resources</p>
</div>
</a>
</div>
<div id="Case_studies">
<a href="Case_studies.html">
<div><img height="40px" width="40px" src="navbarimg/file-case.png" alt=""></div>
<div>
<li><h4>Case Studies</h4></li>
<p>Success stories of our Customers</p>
</div>
</a>
</div>
<div id="Blog">
<a href="Case_studies.html">
<div><img height="40px" width="40px" src="navbarimg/blog.png" alt=""></div>
<div>
<li><h4>Blog</h4></li>
<p>The best content about emails</p>
</div>
</a>
</div>
<div id="Help">
<a href="Help.html">
<div><img height="40px" width="40px" src="navbarimg/info-center.png" alt=""></div>
<div>
<li><h4>Help</h4></li>
<p>How-to's and Knowledge base</p>
</div>
</a>
</div>
</ul>
</div>
<!-- fourth option in nav-bar ending -->
<div id="user-signup">
<button id="barr" class="btn btn-secondary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">
<img style="width: 30px;height: 30px;" src="https://thumbs.dreamstime.com/z/icon-profile-color-green-icon-profile-color-green-circle-color-dark-green-background-color-white-194702090.jpg"/>
</button>
<ul class="dropdown-menu">
<li><a href="userprofile.html" id="signin" class="dropdown-item" href="#">User Profil</a></li>
<li><a href="index.html" onclick="Logout()" class="dropdown-item" href="#">Log Out</a></li>
<li><a href="feedback.html" id="logout" class="dropdown-item" href="#">Feed Back</a></li>
</ul>
</div>
</div>
<!-- ended ones -->
</div>
</div>
</div>
<!-- invisible button ends -->
</div>
</div>
<!-- nav bar ends -->
<br>
<br>
<br>
<br>
<nav>
<div class="nav nav-tabs sperateit" id="nav-tab" role="tablist">
<button class="nav-link active" id="nav-home-tab" data-bs-toggle="tab" data-bs-target="#nav-home" type="button" role="tab" aria-controls="nav-home" aria-selected="true">Home</button>
<button class="nav-link" id="nav-profile-tab" data-bs-toggle="tab" data-bs-target="#nav-profile" type="button" role="tab" aria-controls="nav-profile" aria-selected="false">Plans</button>
</div>
</nav>
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade show active" id="nav-home" role="tabpanel" aria-labelledby="nav-home-tab">
<!-- yuvaraj code -->
<div id="main">
<div><h2>Welcome!</h2><a href="https://calendly.com/mailtrap/transactional-sending"><button>Book a Demo</button></a></div>
<div id="parent">
<div id="child1">
<div id="imgdiv" ><img width="100%" height="100%" src="images/sandbox.png" alt=""/></div>
<hr>
<div id="div">
<div><h1>Sandbox</h1><p>Test Emails on Staging</p></div>
<div><button onclick="moveit()">Set Up inbox</button></div>
</div>
<hr>
<div id="div"><h4>Fake SMTP Server</h4><p>Capture SMTP traffic from staging and dev environments.</p></div>
<hr>
<div id="div"><h4>QA Automation</h4><p>Cover all your testing scenarios with Mailtrap’s well-documented API.</p></div>
<hr>
<div id="div"><h4>Preview and validate HTML/CSS</h4><p>View messages, check spam scores, validate headers. Check the HTML & CSS
support for top email clients.</p>
</div>
<hr>
<div id="div"><h4>Inbox email address</h4><p>Dedicated email address for each of your Inboxes to send messages from other email
accounts or from your application</p>
<img width="80%" src="https://assets.mailtrap.io/packs/assets/app/how-sandbox-works-1dac52185a6057768149.svg" alt="">
</div>
</div>
<div id="child2">
<div id="imgdiv2" ><img width="100%" height="100%" src="images/email box.png" alt=""/></div>
<hr>
<div id="div2">
<div><h1>Email API</h1><p>Send Emails on Production</p></div>
<div><button onclick="moveit()">Set Up domain</button></div>
</div>
<hr>
<div id="div2"><h4>SMTP Service, API/SDK</h4><p>Integrate with our scalable cloud MTA cluster to send your production emails. Well-
documented API compatible with common email providers.</p></div>
<hr>
<div id="div2"><h4>SPF, DKIM, DMARC, Dedicated IP</h4><p>SPF, DKIM, DMARC configuration aligned with major mailbox providers (GMail,
Outlook, ProtonMail, Yahoo, etc.). Dedicated IPs. Support and monitoring by deliverability experts.</p></div>
<hr>
<div id="div2"><h4>Deliverability Alerts</h4><p>Special alerts similar to servers performance monitoring. Triggered by drop in vital
metrics such as bounces, open, click and spam rates.</p>
</div>
<hr>
<div id="div2"><h4>Email content and logs</h4><p>60 days of content retention. Detailed diagnostic logs. Rich filters. History of
events. Email preview. Spam and blocklist analysis.</p>
<img width="80%" src="images/how-email-api-works-194645224abb7bacb756.svg" alt="">
</div>
</div>
</div>
</div>
<!-- yuvaraj code ends -->
</div>
<div class="tab-pane fade" id="nav-profile" role="tabpanel" aria-labelledby="nav-profile-tab">
<!-- vivek code -->
<div id ="container1">
<div class="container-div">
<h2 id="individual">Individual</h2>
<p>For individual usage with higher testing limits</p>
<div>
<span><h3>$</h3></span><h1>14</h1>
<p>per month</p>
<button onclick="individual()" class="buttons1"> select</button>
<h6>5,000 emails</h6>
</div>
<p><i class="fa-solid fa-check"></i> 10 emails / 10 sec</p>
<p><i class="fa-solid fa-check"></i> 5 Inboxes</p>
<p><i class="fa-solid fa-check"></i> 200 Emails /inbox</p>
<p><i class="fa-solid fa-check"></i> API</p>
<p><i class="fa-solid fa-check"></i> Emails up to 7MB</p>
<p><i class="fa-solid fa-check"></i> 100 forwarded emails</p>
<p><i class="fa-solid fa-check"></i> 10 manual forwarding recipients</p>
<p><i class="fa-solid fa-check"></i> 5 projects</p>
</div>
<br>
<div class="container-div">
<h2 id="team">Team</h2>
<p>For teams to collaborate and manage users and testing</p>
<div>
<span><h3>$</h3></span><h1>34</h1>
<p>per month</p>
<button onclick="team()" class="buttons1">Select</button>
<h6>15,000 emails</h6>
</div>
<p><i class="fa-solid fa-check"></i> 25 emails / 10 sec</p>
<p><i class="fa-solid fa-check"></i> 15 Inboxes</p>
<p><i class="fa-solid fa-check"></i> 20 Team Members</p>
<p><i class="fa-solid fa-check"></i> 400 Emails / inbox</p>
<p><i class="fa-solid fa-check"></i> Emails up to 10MB</p>
<p><i class="fa-solid fa-check"></i> Tech Info and BCC</p>
<p><i class="fa-solid fa-check"></i> 500 forwarded emails</p>
<p><i class="fa-solid fa-check"></i> 25 manual forwarding recipients</p>
<p><i class="fa-solid fa-check"></i> 15 projects</p>
</div>
<br>
<div class="container-div">
<h2 id="business">Business</h2>
<p>For companies with multiple teams and projects</p>
<div>
<span><h3>$</h3></span><h1>64</h1>
<p>per month</p>
<button onclick="business()" class="buttons1">Select</button>
<h6>50,000 emails</h6>
</div>
<p><i class="fa-solid fa-check"></i> 50 emails / 10 sec</p>
<p><i class="fa-solid fa-check"></i> 40 Inboxes</p>
<p><i class="fa-solid fa-check"></i> 40 Team Members</p>
<p><i class="fa-solid fa-check"></i> 600 Emails / inbox</p>
<p><i class="fa-solid fa-check"></i> API</p>
<p><i class="fa-solid fa-check"></i> Inbox email address</p>
<p><i class="fa-solid fa-check"></i> Emails up to 15MB</p>
<p><i class="fa-solid fa-check"></i> Tech Info and BCC</p>
<p><i class="fa-solid fa-check"></i> 2,000 forwarded emails</p>
<p><i class="fa-solid fa-check"></i> 100 manual forwarding recipients</p>
<p><i class="fa-solid fa-check"></i> 40 projects</p>
</div>
<br>
<div class="container-div">
<h2 id="premium">Premium</h2>
<p>For organizations that need large-scale email testing</p>
<div>
<span><h3>$</h3></span><h1>129</h1>
<p>per month</p>
<button onclick="Premium()" class="buttons1">Select</button>
<h6>100,000 emails</h6>
</div>
<p><i class="fa-solid fa-check"></i> 100 emails / 10 sec</p>
<p><i class="fa-solid fa-check"></i> 80 Inboxes</p>
<p><i class="fa-solid fa-check"></i> 80 Team Members</p>
<p><i class="fa-solid fa-check"></i> 800 Emails / inbox</p>
<p><i class="fa-solid fa-check"></i> API</p>
<p><i class="fa-solid fa-check"></i> Inbox email address</p>
<p><i class="fa-solid fa-check"></i> Emails up to 20MB</p>
<p><i class="fa-solid fa-check"></i> Tech Info and BCC</p>
<p><i class="fa-solid fa-check"></i> 5,000 forwarded email</p>
<p><i class="fa-solid fa-check"></i> 100 manual forwarding recipients</p>
<p><i class="fa-solid fa-check"></i> 80 projects</p>
</div>
<br>
<div class="container-div">
<h2 id="enterprise">Enterprise</h2>
<p>For clients who want virtually no limits and SSO</p>
<div>
<span><h3>$</h3></span><h1>399</h1>
<p>per month</p>
<button onclick="enterprise()" class="buttons1">Select</button>
<h6>10,000,000 emails</h6>
</div>
<p><i class="fa-solid fa-check"></i> 150 emails / 10 sec</p>
<p><i class="fa-solid fa-check"></i> 300 Inboxes</p>
<p><i class="fa-solid fa-check"></i> 999 Team Members</p>
<p><i class="fa-solid fa-check"></i> 1,000 Emails / inbox</p>
<p><i class="fa-solid fa-check"></i> API</p>
<p><i class="fa-solid fa-check"></i> Inbox email address</p>
<p><i class="fa-solid fa-check"></i> Emails up to 25MB</p>
<p><i class="fa-solid fa-check"></i> Tech Info and BCC</p>
<p><i class="fa-solid fa-check"></i> 10,000 forwarded emails</p>
<p><i class="fa-solid fa-check"></i> 300 manual forwarding recipients</p>
<p><i class="fa-solid fa-check"></i> 300 projects</p>
<p><i class="fa-solid fa-check"></i> Single sign-on (SSO)</p>
</div>
</div>
<!-- vivek code ends -->
<br>
<br>
<br>
<br>
<!-- code ends -->
</div><div class="tab-pane fade" id="nav-contact" role="tabpanel" aria-labelledby="nav-contact-tab">...</div>
</div>
</body>
</html>
<script src="scripts/UI.js"></script>