-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
117 lines (106 loc) · 4.39 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>G Bot</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.min.css" rel="stylesheet"/>
<style>
body{
min-width: 600px;
}
.info {
font-size: 16px;
margin-top: 10%;
}
a{
color: white;
font-weight: bold;
border-bottom: 1px solid #00796b;
}
.success{
display: none;
}
hr.colored {
border: 0; /* in order to override TWBS stylesheet */
height: 5px;
background: linear-gradient(to right, rgba(196,222,138,1) 0%, rgba(196,222,138,1) 12.5%, rgba(245,253,212,1) 12.5%, rgba(245,253,212,1) 25%, rgba(255,208,132,1) 25%, rgba(255,208,132,1) 37.5%, rgba(242,122,107,1) 37.5%, rgba(242,122,107,1) 50%, rgba(223,157,185,1) 50%, rgba(223,157,185,1) 62.5%, rgba(192,156,221,1) 62.5%, rgba(192,156,221,1) 75%, rgba(95,156,217,1) 75%, rgba(95,156,217,1) 87.5%, rgba(94,190,227,1) 87.5%, rgba(94,190,227,1) 87.5%, rgba(94,190,227,1) 100%); /* W3C */
}
.alert {
display:none;
padding: 20px;
background-color: green;
color: white;
}
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
.closebtn:hover {
color: black;
}
</style>
</head>
<body>
<nav>
<div class="nav-wrapper cyan accent-4">
<img style="margin-left:30%" src="img/logo.png" height="60px">
<a href="#" class="brand-logo center center-align">G-Bot</a>
</div>
</nav>
<div class="container">
<br />
<hr class="colored">
<div class="alert">
<br />
<span class="closebtn">×</span>
<strong>Successully updated Data.</strong>
<br />
</div>
<div class="row main">
<form autocomplete="on" class="col s12">
<div id="form">
<div class="meetgroup">
<div class="row ">
<div class="input-field col s12 red-text">
<input id="url" type="text" name="Url" required>
<label for="url">Meeting Link</label>
</div>
</div>
<div class="row">
<div class="input-field col s4">
<input type="number" id="start-hour" min="0" max="23" required value="9">
<label for="start-hour">HH</label>
</div>
<div class="input-field col s4">
<input type="number" id="start-minute" min="0" max="59" required value="30">
<label for="start-minute">MM</label>
</div>
<div class="input-field col s4">
<input type="number" id="duration" max="500" required value="60">
<label for="duration">Duration</label>
<span class="helper-text">(In Minute)</span>
</div>
</div>
</div>
</div>
<div class="update"></div>
<a class="btn-floating btn-large waves-effect pulse waves-light btn-large cyan darken-4 right" id="add"><i class="material-icons">add</i></a>
<button class="btn waves-effect waves-light cyan darken-2 btn-large" type="submit" name="action" id="submitbtn">Submit<i class="material-icons right">send</i></button>
</form>
</div>
<hr class="colored">
<div class="data">
</div>
</body>
<script src="js/jquery-3.6.0.min.js"></script>
<script src="js/materialize.min.js"></script>
<script src="js/popup.js"></script>
</html>