-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (51 loc) · 1.66 KB
/
index.html
File metadata and controls
56 lines (51 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<title>Website Views Generator</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
<style>
body {
font-family: Arial, sans-serif;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff, #ffff00);
background-size: 400% 400%;
animation: glowing-background 10s infinite;
}
@keyframes glowing-background {
0%, 100% {
background-position: 0% 50%;
}
20% {
background-position: 100% 50%;
}
40% {
background-position: 50% 100%;
}
60% {
background-position: 50% 0%;
}
80% {
background-position: 0% 0%;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to the Website Views Generator</h1>
<form method="post" action="/generate_views">
<label for="website">Website:</label>
<input type="text" id="website" name="website" required><br><br>
<label for="max_clicks">Maximum Number of Clicks:</label>
<input type="number" id="max_clicks" name="max_clicks" required><br><br>
<input type="submit" value="Generate Views">
</form>
<form method="get" action="/emulate_mouse_movement">
<input type="submit" value="Emulate Mouse Movement">
</form>
</div>
</body>
</html>