-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
48 lines (46 loc) · 1.74 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
<!DOCTYPE html>
<!-- saved from url=(0029)https://thebot.net/api/gmail/ -->
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Gmail Dot Trick Generator</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<div class="col-6">
<div class="card">
<div class="card-header text-white text-center bg-info">
<i class="fab fa-google"></i>
Gmail Dot Trick Generator
</div>
<div class="card-body">
<div class="input-group mb-3">
<input type="text" id="username" class="form-control" placeholder="Username">
<div class="input-group-append">
<span class="input-group-text">@gmail.com</span>
</div>
</div>
<div class="form-group">
<label for="emails">Emails</label>
<label for="emails" id="counter" class="float-right">Generated: 0</label>
<textarea class="form-control" id="emails" rows="16"></textarea>
</div>
<div class="form-group float-right">
<button type="button" id="save" class="btn btn-success">
<i class="fas fa-download"></i>
Save
</button>
</div>
</div>
<div class="card-footer text-muted text-center">
Source code: <a href="https://thebot.net/members/lamlam.958/">namhong1412</a>.
</div>
</div>
</div>
</div>
</div>
<script src="FileSaver.js"></script>
<script src="trick.js"></script>
</body></html>