-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (54 loc) · 1.86 KB
/
index.html
File metadata and controls
63 lines (54 loc) · 1.86 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SoulMail</title>
<meta name="keywords" content="temporary email, tempmail, disposable, airmail" />
<meta name="description" content="SoulMail - Lightweight temporary email frontend with Mail.tm support." />
<meta name="author" content="Darky-Github" />
<link rel="stylesheet" href="Style/style.css" />
</head>
<body>
<div class="container">
<h1>SoulMail</h1>
<div class="config">
<label>Char Length</label>
<input type="number" id="char-length" min="4" max="32" value="8" />
<label>Custom API</label>
<input type="text" id="custom-api" placeholder="https://your.api/send" />
<label>API Key</label>
<input type="text" id="api-key" placeholder="NO_API_KEY" />
</div>
<div class="email-box">
<input type="text" id="email" readonly />
<button id="copy">Copy</button>
<button id="generate">Generate</button>
<button id="reset">Reset Timer</button>
<button id="extend">+30min</button>
<button id="destroy">Delete</button>
</div>
<div class="timer">
Time left: <span id="timer">10:00</span>
</div>
<div class="inbox">
<h2>Inbox</h2>
<button id="refresh">Refresh</button>
<div id="emails"></div>
<div id="emailContent"></div>
</div>
<div class="send-email">
<h2>Send Email</h2>
<input type="text" id="to-email" placeholder="To Email" />
<input type="text" id="subject" placeholder="Subject" />
<textarea id="message" placeholder="Message..."></textarea>
<button id="send">Send</button>
<div id="send-status"></div>
</div>
</div>
<footer>
© 2026 Darky-Github. All rights reserved.
</footer>
<script src="Script/script.js"></script>
</body>
</html>