-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
91 lines (85 loc) · 3.27 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Discord Google Meet Alert</title>
<link href="bootstrap.min.css" rel="stylesheet" />
<link href="tags.css" rel="stylesheet" />
<style>
body {
min-width: 500px;
}
.head {
background-color: #007bff;
color: white;
font-size: 40px;
text-align: center;
padding: 10px;
margin-bottom: 20px;
}
.success {
display: none;
}
</style>
<script src="jquery-3.5.1.js"></script>
<script src="tags.js"></script>
</head>
<body>
<div class="head">
Discord Google Meet Alert
</div>
<div class="container first">
<div class="info">
<ul>
<li>Enter all possible variations of <b>your name</b> to get better results</li>
<li>Example : Fabian Febian Fabi etc..</li>
<li>Enter the email address to be notified when someone calls your name</li>
<li>Enter mobile number WITH country code</li>
</ul>
</div>
<form autocomplete="on" id="myForm">
<div class="form-row">
<div class="col input-group">
<div class="input-group-append">
<span class="input-group-text">Your Name</span>
</div>
<input type="text" class="form-control betaName" data-role="tagsinput" name="betaName"
placeholder="Name to listen" autofocus style="padding-top: 5px;" required>
</div>
</div><br>
<!-- <div class="form-row">
<div class="col input-group">
<div class="input-group-append">
<span class="input-group-text">Number</span>
</div>
<input type="text" class="form-control betaNumber" name="betaNumber" placeholder="Mobile number with country code (+919998887770)" required>
</div>
</div><br> -->
<div class="form-row">
<div class="col input-group">
<div class="input-group-append">
<span class="input-group-text">Your email ID</span>
</div>
<input type="text" class="form-control betaEmail" name="betaEmail"
placeholder="Email id to be notified" required>
</div>
</div><br>
</form>
<button type="button" class="btn btn-primary btn-lg btn-block m-10 update">
Update
</button><br>
</div>
<div class="container success">
<div class="alert alert-success" role="alert">
Update Successful
</div>
<div class="alert alert-primary" role="alert">
You'll be notified over your email whenever I hear your name
</div>
</div>
<h6 style="text-align: end;font-size: small;"><a href="mailto:nithin.s491@gmail.com" target="_blank">Report bugs
here</a></h6>
</body>
<script src="popup.js"></script>
</html>