-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (47 loc) · 1.46 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
<!--------------------------------
Author: Mehmet Kahya
Created: 17 March 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>
</head>
<body>
<header>
<img src="header.png" alt="HEADER" draggable="false"/>
<p>Created by Mehmet Kahya</p>
</header>
<hr />
<div class="horizontalContainer">
<input id="addr" placeholder="email address" style="width: 49%" />
<button onclick="refreshMail()">Load Mail</button>
<button onclick="genEmail()">New Address</button>
</div>
<hr />
<table id="emails"></table>
<footer>
Mehmet Kahya - 2024
<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>
</footer>
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="api.js"></script>
</body>
</html>