-
Notifications
You must be signed in to change notification settings - Fork 43
/
index.html
102 lines (93 loc) · 4.19 KB
/
index.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
<!--------------------------------
Author: Mehmet Kahya
Created: 17 March 2024
Last Updated: 28 Aug 2024
-------------------------------->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TempMail</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="//cdn.repl.email/styles/water.css" />
<link rel="manifest" href="manifest.json" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.13.0/css/all.css"
/>
<script src="api.js"></script>
<script id="_wau776">
var _wau = _wau || [];
_wau.push(["dynamic", "0pakxqe3b2", "776", "c4302bffffff", "small"]);
</script>
<script async src="//waust.at/d.js"></script>
<!-- Add favicon -->
<link rel="icon" href="images/temp-mail-icon.png" type="image/x-icon" />
</head>
<body>
<header>
<div class="ascii-art">
<pre>
████████╗███████╗███╗ ███╗██████╗ ███╗ ███╗ █████╗ ██╗██╗
╚══██╔══╝██╔════╝████╗ ████║██╔══██╗ ████╗ ████║██╔══██╗██║██║
██║ █████╗ ██╔████╔██║██████╔╝ ██╔████╔██║███████║██║██║
██║ ██╔══╝ ██║╚██╔╝██║██╔═══╝ ██║╚██╔╝██║██╔══██║██║██║
██║ ███████╗██║ ╚═╝ ██║██║ ██║ ╚═╝ ██║██║ ██║██║███████╗
╚═╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝
</pre>
</div>
</header>
<div id="popupNotification" class="popup">
<div class="popup-content">
<span class="close-btn" onclick="closePopup()">×</span>
<p class="main">Welcome to the TempMail!</p>
<p>
TempMail is a simple web application that allows you to generate
temporary email addresses and view the emails received by these
addresses.
</p>
<p>This project use 1secmail's api for create e-mails. </p>
<p>
⚠️ This project is purely for educational purposes. We do not allow
illegal things to be done with this project and we are not responsible
for any incidents that may occur. Use it legally ⚠️
</p>
<p class="main" style="font-size: 0.75rem !important">
© 2024 Mehmet Kahya - TempMail
</p>
</div>
</div>
<div class="horizontalContainer">
<input id="addr" placeholder="email address" />
<button onclick="refreshMail()">Load Mail</button>
<button onclick="genEmail()">New Address</button>
</div>
<table id="emails"></table>
<footer>
Mehmet Kahya - 2024 - TempMail -
<a href="https://1secmail.com/" target="_blank" style="color: aliceblue;">1sec mail </a>
<div class="social">
<a href="mailto:[email protected]" target="_blank"
><i class="fas fa-envelope"></i
></a>
<a href="https://github.com/mehmetkahya0" target="_blank"
><i class="fab fa-github"></i
></a>
</div>
<button class="warning-button" onclick="warningAlert()">
⚠️ Warning Note ⚠️
</button>
</footer>
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="api.js"></script>
<script>
window.onload = function () {
document.getElementById("popupNotification").style.display = "block";
};
function closePopup() {
document.getElementById("popupNotification").style.display = "none";
}
</script>
</body>
</html>